prisma-class-generator
Version:
Class generator from Prisma schema
10 lines (9 loc) • 337 B
TypeScript
import { Echoable } from '../interfaces/echoable';
export declare class ImportComponent implements Echoable {
from: string;
items: string[];
constructor(from: string, items: string | string[]);
echo: (alias?: string) => string;
add(item: any): void;
getReplacePath(classToPath: Record<string, string>): string;
}