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

typescript.services.api.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
import type { Configuration } from "../configuration";
import type { HttpFile, RequestContext, ResponseContext, HttpInfo } from "../http/http";

{{#imports}}
import { {{classname}} } from "{{filename}}";
{{/imports}}
{{#operations}}

export abstract class Abstract{{classname}}RequestFactory {
    {{#operation}}
    public abstract {{nickname}}({{#allParams}}{{paramName}}{{^required}}?{{/required}}: {{{dataType}}}, {{/allParams}}options?: Configuration): Promise;

    {{/operation}}
}


export abstract class Abstract{{classname}}ResponseProcessor {
    {{#operation}}
     public abstract {{nickname}}WithHttpInfo(response: ResponseContext): Promise>;

    {{/operation}}
}
{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy