Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 273B

1234567891011
  1. import {Buffer, BufferEncoding, Options} from './shared-types'
  2. declare function buffer(value: string | Buffer, options?: Options): string
  3. declare function buffer(
  4. value: string | Buffer,
  5. encoding?: BufferEncoding,
  6. options?: Options
  7. ): string
  8. export default buffer