{{>header}}

{{#each services}}
{{#if imports}}
{{#each imports}}
import type { {{{this}}} } from './models/{{{this}}}{{>tsExtention}}';
{{/each}}
{{/if}}
{{/each}}

{{#each services}}
{{#each operations}}
export type {{{../name}}}{{capitalize name}}Input = {{>parametersType}};

export type {{{../name}}}{{capitalize name}}Output = {{>result}};

{{/each}}
{{/each}}
