mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 22:59:31 +08:00
15 lines
No EOL
576 B
Text
15 lines
No EOL
576 B
Text
import { TSESTree } from '../ts-estree';
|
|
declare type PatternVisitorCallback = (pattern: TSESTree.Identifier, info: {
|
|
rest: boolean;
|
|
topLevel: boolean;
|
|
assignments: TSESTree.AssignmentPattern[];
|
|
}) => void;
|
|
interface PatternVisitorOptions {
|
|
processRightHandNodes?: boolean;
|
|
}
|
|
interface Visitor {
|
|
visitChildren<T extends TSESTree.BaseNode | undefined | null>(node?: T): void;
|
|
visit<T extends TSESTree.BaseNode | undefined | null>(node?: T): void;
|
|
}
|
|
export { PatternVisitorCallback, PatternVisitorOptions, Visitor };
|
|
//# sourceMappingURL=Options.d.ts.map |