openapi-codegen-typescript
Version:
OpenApi codegen for generating types an mocks from swagger json file
8 lines (7 loc) • 318 B
TypeScript
import { SwaggerSchema } from '../types';
export declare type ResultStringForExportInterface = {
schemaKey?: string;
schema: SwaggerSchema;
interfaces?: Array<string>;
};
export declare const getResultStringForExportInterface: ({ schemaKey, schema, interfaces }: ResultStringForExportInterface) => string;