- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
24 lines
778 B
TypeScript
24 lines
778 B
TypeScript
import { MinimatchOptions, MMRegExp } from './index.js';
|
|
export type ExtglobType = '!' | '?' | '+' | '*' | '@';
|
|
export declare class AST {
|
|
#private;
|
|
type: ExtglobType | null;
|
|
constructor(type: ExtglobType | null, parent?: AST, options?: MinimatchOptions);
|
|
get hasMagic(): boolean | undefined;
|
|
toString(): string;
|
|
push(...parts: (string | AST)[]): void;
|
|
toJSON(): any[];
|
|
isStart(): boolean;
|
|
isEnd(): boolean;
|
|
copyIn(part: AST | string): void;
|
|
clone(parent: AST): AST;
|
|
static fromGlob(pattern: string, options?: MinimatchOptions): AST;
|
|
toMMPattern(): MMRegExp | string;
|
|
toRegExpSource(): [
|
|
re: string,
|
|
body: string,
|
|
hasMagic: boolean,
|
|
uflag: boolean
|
|
];
|
|
}
|
|
//# sourceMappingURL=ast.d.ts.map
|