UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

11 lines (10 loc) 325 B
import * as ts from 'typescript'; export type DeepPluginMeta = ts.ObjectLiteralExpression | { [key: string]: DeepPluginMeta; }; export interface ReadonlyVisitor { key: string; typeImports: Record<string, string>; visit(program: unknown, sf: unknown): unknown; collect(): Record<string, Array<unknown>>; }