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
20 lines (19 loc) • 694 B
TypeScript
/**Premade message for the general help menu. */
export declare const showIntro: () => void;
/**Little utility to create nice messages. */
export default class MessageBuilder {
text: string;
constructor();
withHeader(header?: string): this;
withTitle(title: string): this;
withSection(title: string, items: string[], c?: boolean): this;
withNewLine(): this;
show(): void;
}
export declare const prismaCLITag: string;
export declare const errorTag: string;
export declare const warningTag: string;
export declare const conflictTag: string;
export declare const successTag: string;
export declare const experimentalTag: string;
export declare const updateTag: string;