preprocess.d.ts 224 B

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