index.d.ts 273 B

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