create-snippet
Version:
npx tool for generating code snippets
12 lines (11 loc) • 455 B
TypeScript
import { TypeGeneratePath } from '../../types';
import { InterfacePath } from './path.interface';
import type { TypeGenerateOptions } from './path.type';
export declare class ModulePath implements InterfacePath<TypeGenerateOptions, TypeGeneratePath> {
private string;
constructor();
private generateSnippetFileName;
private generateDefaultPath;
private generateFlatPath;
generate(options: TypeGenerateOptions): TypeGeneratePath;
}