Maxim Boychenko
Maxim Boychenko
Yeah, but I just think that it should not be hard to add feature like this.
@rattrayalex you can do something like this: ```typescript // openapi-backend-generated generated from openapi-typescript package import { operations } from './openapi-backend-generated'; // define api const api = new OpenAPIBackend({ definition: path.join(__dirname,...
agree with @piczmar, I think he means this: ```javascript import OpenAPIBackend from 'openapi-backend'; // create api with your definition file or object const api = new OpenAPIBackend({ definition: './petstore.yml' });...