github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/typescript-fetch/models.mustache (about)

     1  /* tslint:disable */
     2  /* eslint-disable */
     3  {{>licenseInfo}}
     4  {{#models}}
     5  {{#model}}
     6  {{#isEnum}}
     7  {{>modelEnum}}
     8  {{/isEnum}}
     9  {{^isEnum}}
    10  {{#oneOf}}
    11  {{#-first}}
    12  {{>modelOneOf}}
    13  {{/-first}}
    14  {{/oneOf}}
    15  {{^oneOf}}
    16  {{>modelGeneric}}
    17  {{/oneOf}}
    18  {{/isEnum}}
    19  {{/model}}
    20  {{/models}}