@protocolnebula/ts-openapi-generator
Version:
Build API and models from Swagger/OpenAPI to use in any project type
16 lines (13 loc) • 341 B
text/typescript
import { StoreI } from 'src/stores/entities.store';
import { ConfigI } from './config.model';
export type USED_IN_ATTRIBUTE = 'query' | 'param';
export interface PhysycalFile {
name: string;
fileName: string;
hasComments: boolean;
}
export interface MockGenerator {
config: ConfigI;
store: StoreI;
generate(): Promise<void>;
}