Skip to content

Commit 20b244e

Browse files
committed
fix lint;
1 parent 4e30e09 commit 20b244e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/misc/interface.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type RelationshipType = "currency" | "integration_feature" | "integration_type"
2222
type Relationship = {
2323
[K in RelationshipType]: {
2424
type: K;
25-
data: Array<string>;
25+
data: string[];
2626
}
2727
}
2828

@@ -116,13 +116,13 @@ export type ListBanksQueryParams = {
116116
}
117117

118118
export interface BanksResponse extends Response {
119-
data: Array<Bank>;
119+
data: Bank[];
120120
}
121121

122122
export interface CountriesResponse extends Response {
123-
data: Array<Country>;
123+
data: Country[];
124124
}
125125

126126
export interface StatesResponse extends Response {
127-
data: Array<State>;
127+
data: State[];
128128
}

0 commit comments

Comments
 (0)