lix-website/themes/lix/assets/bootstrap/node_modules/micromark/lib/preprocess.d.ts

12 lines
224 B
TypeScript
Raw Normal View History

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