This template is modified from the original one, to handle multiple status-code handling of response. Don't ask me how they work, I don't quite understand them in depth...
16 lines
449 B
Text
16 lines
449 B
Text
/* tslint:disable */
|
|
/* eslint-disable */
|
|
{{#useSagaAndRecords}}
|
|
export * from './SagaApiManager{{importFileExtension}}'
|
|
export * from './allSagas{{importFileExtension}}'
|
|
{{/useSagaAndRecords}}
|
|
{{#apiInfo}}
|
|
{{#apis}}
|
|
{{#operations}}
|
|
export * from './{{ classFilename }}{{importFileExtension}}';
|
|
{{#useSagaAndRecords}}
|
|
export * from './{{{ classFilename }}}Sagas{{importFileExtension}}';
|
|
{{/useSagaAndRecords}}
|
|
{{/operations}}
|
|
{{/apis}}
|
|
{{/apiInfo}}
|