1 | import { Rule, Token } from './types';
|
2 | export declare function opt(ofRule: Rule | string): Rule;
|
3 | export declare function list(ofRule: Rule | string, separator?: string | Rule): Rule;
|
4 | export declare function butNot(rule: Rule, exclusions: Array<Rule>): Rule;
|
5 | export declare function t(kind: string, style: string): {
|
6 | style: string;
|
7 | match: (token: Token) => boolean;
|
8 | };
|
9 | export declare function p(value: string, style?: string): Rule;
|
10 | //# sourceMappingURL=RuleHelpers.d.ts.map |
\ | No newline at end of file |