blob: 95692ae5c18bc3eeb722097d2c27c7d93edb4373 [file] [log] [blame] [edit]
import {BufferEncoding} from './shared-types'
type PreprocessReturn = (
value: string,
encoding: BufferEncoding,
end?: boolean
) => string[]
declare function preprocess(): PreprocessReturn
export default preprocess