Skip to content

Commit

Permalink
1ファイルに複数classがあった場合にも対応できるよう修正
Browse files Browse the repository at this point in the history
ModelはResponseだけでなく、RequestのPOSTにも利用できるため名称を修正
  • Loading branch information
A-Kurimoto committed Mar 13, 2020
1 parent f5e2532 commit 510aba6
Show file tree
Hide file tree
Showing 5 changed files with 274 additions and 241 deletions.
17 changes: 17 additions & 0 deletions example/dto/dup/duplicate.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
export interface DuplicateIf {
/**
* @desc JSDoc of param1
*/
param1: string;
}

export class DuplicateClass {
/**
* @desc JSDoc of param1
*/
param1: string;

constructor(param1: string) {
this.param1 = param1;
}
}
Loading

0 comments on commit 510aba6

Please sign in to comment.