UNPKG

openapi-ts-generator

Version:

Based on swagger-ts-generator, this is a type script model generator specifically for services with OpenApi spec documentation.

11 lines (10 loc) 295 B
export interface ILogger { log: (data: string) => void; error: (data: string) => void; warn: (data: string) => void; } export declare class MockConsoleLogger implements ILogger { log: (data: string) => void; error: (data: string) => void; warn: (data: string) => void; }