prisma-yml
Version:
<a href="https://www.prismagraphql.com"><img src="https://imgur.com/HUu10rH.png" width="248" /></a>
18 lines (17 loc) • 561 B
TypeScript
export declare class Output {
log(...args: any[]): void;
warn(...args: any[]): void;
getErrorPrefix(fileName: string, type?: 'error' | 'warning'): string;
}
export declare class TestOutput {
output: string[];
constructor();
log(...args: any[]): void;
warn(...args: any[]): void;
getErrorPrefix(fileName: string, type?: 'error' | 'warning'): string;
}
export interface IOutput {
warn: (...args: any[]) => void;
log: (...args: any[]) => void;
getErrorPrefix: (fileName: string, type?: 'error' | 'warning') => string;
}