Skip to content

Commit d0c889c

Browse files
committed
feat: remove @memberof
1 parent a7d3bb6 commit d0c889c

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

modules/openapi-generator/src/main/resources/typescript-axios/apiInner.mustache

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ export interface {{classname}}Interface {
337337
* @param {*} [options] Override http request option.{{#isDeprecated}}
338338
* @deprecated{{/isDeprecated}}
339339
* @throws {RequiredError}
340-
* @memberof {{classname}}Interface
341340
*/
342341
{{#useSingleRequestParameter}}
343342
{{nickname}}({{#allParams.0}}requestParameters{{^hasRequiredParams}}?{{/hasRequiredParams}}: {{classname}}{{operationIdCamelCase}}Request, {{/allParams.0}}options?: RawAxiosRequestConfig): AxiosPromise<{{{returnType}}}{{^returnType}}void{{/returnType}}>;
@@ -361,7 +360,6 @@ export interface {{classname}}{{operationIdCamelCase}}Request {
361360
/**
362361
* {{description}}
363362
* @type {{=<% %>=}}{<%&dataType%>}<%={{ }}=%>
364-
* @memberof {{classname}}{{operationIdCamelCase}}
365363
*/
366364
readonly {{paramName}}{{^required}}?{{/required}}: {{#isEnum}}{{{datatypeWithEnum}}}{{/isEnum}}{{^isEnum}}{{{dataType}}}{{#isNullable}} | null{{/isNullable}}{{/isEnum}}
367365
{{^-last}}
@@ -402,7 +400,6 @@ export class {{classname}} extends BaseAPI {
402400
* @param {*} [options] Override http request option.{{#isDeprecated}}
403401
* @deprecated{{/isDeprecated}}
404402
* @throws {RequiredError}
405-
* @memberof {{classname}}
406403
*/
407404
{{#useSingleRequestParameter}}
408405
public {{nickname}}({{#allParams.0}}requestParameters: {{classname}}{{operationIdCamelCase}}Request{{^hasRequiredParams}} = {}{{/hasRequiredParams}}, {{/allParams.0}}options?: RawAxiosRequestConfig) {

modules/openapi-generator/src/main/resources/typescript-axios/configuration.mustache

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,49 +17,42 @@ export class Configuration {
1717
/**
1818
* parameter for apiKey security
1919
* @param name security name
20-
* @memberof Configuration
2120
*/
2221
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
2322
/**
2423
* parameter for basic security
2524
*
2625
* @type {string}
27-
* @memberof Configuration
2826
*/
2927
username?: string;
3028
/**
3129
* parameter for basic security
3230
*
3331
* @type {string}
34-
* @memberof Configuration
3532
*/
3633
password?: string;
3734
/**
3835
* parameter for oauth2 security
3936
* @param name security name
4037
* @param scopes oauth2 scope
41-
* @memberof Configuration
4238
*/
4339
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
4440
/**
4541
* override base path
4642
*
4743
* @type {string}
48-
* @memberof Configuration
4944
*/
5045
basePath?: string;
5146
/**
5247
* override server index
5348
*
5449
* @type {number}
55-
* @memberof Configuration
5650
*/
5751
serverIndex?: number;
5852
/**
5953
* base options for axios calls
6054
*
6155
* @type {any}
62-
* @memberof Configuration
6356
*/
6457
baseOptions?: any;
6558
/**

modules/openapi-generator/src/main/resources/typescript-axios/modelGeneric.mustache

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export interface {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{
1212
/**
1313
* {{{description}}}
1414
* @type {{=<% %>=}}{<%&datatype%>}<%={{ }}=%>
15-
* @memberof {{classname}}
1615
{{#deprecated}}
1716
* @deprecated
1817
{{/deprecated}}

0 commit comments

Comments
 (0)