All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.typescript.class.mustache Maven / Gradle / Ivy

There is a newer version: 0.113
Show newest version
{{>header}}
{{#localImports}}import { {{&className}} } from "./{{&className}}";{{#last}}
{{/last}}
{{/localImports}}{{#constraints}}{{#schema}}{{#description}}/**
 * {{&description}}
 */
{{/description}}{{/schema}}export interface {{&className}} {
{{#properties}}{{#schema}}{{#description}}    /** {{&safeDescription}} */
{{/description}}{{/schema}}    {{&name}}{{#nullable}}?{{/nullable}}: {{>type}};
{{/properties}}{{&closeBrace}}{{#nestedClasses}}

{{#constraints}}{{#isObject}}export interface {{&className}} {
{{#properties}}{{#schema}}{{#description}}    /** {{&safeDescription}} */
{{/description}}{{/schema}}    {{&name}}{{#nullable}}?{{/nullable}}: {{>type}};
{{/properties}}{{&closeBrace}}{{/isObject}}{{#isString}}export type {{&className}} =
{{#enumValues}}    "{{&.}}"{{^last}} |
{{/last}}{{/enumValues}}{{^enumValues}}any{{/enumValues}};{{/isString}}{{/constraints}}{{/nestedClasses}}{{/constraints}}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy