mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 03:18:15 +08:00
13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
/**
|
|
* @returns {Preprocessor}
|
|
* Preprocess a value.
|
|
*/
|
|
export function preprocess(): Preprocessor;
|
|
/**
|
|
* Preprocess a value.
|
|
*/
|
|
export type Preprocessor = (value: Value, encoding?: Encoding | null | undefined, end?: boolean | null | undefined) => Array<Chunk>;
|
|
import type { Value } from 'micromark-util-types';
|
|
import type { Encoding } from 'micromark-util-types';
|
|
import type { Chunk } from 'micromark-util-types';
|
|
//# sourceMappingURL=preprocess.d.ts.map
|