{{>header}}

{{#if models}}
export * from './models/index{{>tsExtention}}'
{{/if}}

{{#if @root.exportSchemas}}
{{#if models}}
export * from './schemas/index{{>tsExtention}}';
{{/if}}
{{/if}}

{{#if @root.exportServices}}
{{#if services}}
export * from './data-types{{>tsExtention}}';
export * from './routes{{>tsExtention}}';
export * from './client{{>tsExtention}}';
{{#if totalHooks}}
export * from './hooks{{>tsExtention}}';
{{/if}}
{{/if}}
{{/if}}

{{#unless models}}
{{#unless services}}
export {}
{{/unless}}
{{/unless}}
