UNPKG

prisma-util

Version:

Prisma Util is an easy to use tool that merges multiple Prisma schema files, allows extending of models, resolves naming conflicts both manually and automatically and provides easy access to Prisma commands and timing reports. It's mostly a plug-and-play

15 lines (14 loc) 403 B
/// <reference types="node" /> export default class InteractiveMode { private example; private git; private manifest?; constructor(example?: string); queue(): Promise<void>; download(): Promise<void>; emptyLoop(): Promise<void>; runCommand(command: string, env: NodeJS.ProcessEnv): Promise<boolean>; clearWindow(): void; printControls(): void; end(): void; }