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.

preprocess.d.ts 224B

1234567891011
  1. import {BufferEncoding} from './shared-types'
  2. type PreprocessReturn = (
  3. value: string,
  4. encoding: BufferEncoding,
  5. end?: boolean
  6. ) => string[]
  7. declare function preprocess(): PreprocessReturn
  8. export default preprocess