@sentry/wizard
Version:
Sentry wizard helping you to configure your project
5 lines (4 loc) • 408 B
TypeScript
export declare function patchMatchingFile(globPattern: string, func: (content: string, match: string, ...args: unknown[]) => Promise<string | void>, ...args: unknown[]): Promise<void>;
export declare function matchFiles(globPattern: string): string[];
export declare function exists(globPattern: string): boolean;
export declare function matchesContent(globPattern: string, contentPattern: RegExp): boolean;