forked from lix-project/lix-website
12 lines
224 B
TypeScript
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
|