Skip to content

Commit

Permalink
test: improve CRUDModel Interface
Browse files Browse the repository at this point in the history
  • Loading branch information
yeeun kang committed Sep 30, 2024
1 parent f8756e4 commit 73965b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cores/elastic/elastic6-service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,9 @@ interface CRUDModel extends Elastic6Item {
nick?: string;
count?: number;
type?: string;
empty?: any;
a?: any;
b?: any;
empty?: string | string[] | number | number[];
a?: string | string[] | number | number[];
b?: string | string[] | number | number[];
//TODO - extra should be `GeneralItem`
extra?: object | any;
}
Expand Down

0 comments on commit 73965b2

Please sign in to comment.