This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/prisma-loader/prisma-yml/Output.d.ts

18 lines
549 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;
}