lix-website/themes/lix/assets/bootstrap/node_modules/micromark/dist/preprocess.d.ts
2024-04-26 22:49:34 -06:00

12 lines
224 B
TypeScript

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