test/node_modules/@vuepress/highlighter-helper/lib/node/whitespace.d.ts
2024-08-13 09:27:52 +08:00

5 lines
307 B
TypeScript

export declare const WHITESPACE_REGEXP: RegExp;
export declare const NO_WHITESPACE_REGEXP: RegExp;
export type WhitespacePosition = 'all' | 'boundary' | 'trailing';
export declare const resolveWhitespacePosition: (info: string, defaultPosition?: boolean | WhitespacePosition) => WhitespacePosition | false;