We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e30e09 commit 20b244eCopy full SHA for 20b244e
src/misc/interface.ts
@@ -22,7 +22,7 @@ type RelationshipType = "currency" | "integration_feature" | "integration_type"
22
type Relationship = {
23
[K in RelationshipType]: {
24
type: K;
25
- data: Array<string>;
+ data: string[];
26
}
27
28
@@ -116,13 +116,13 @@ export type ListBanksQueryParams = {
116
117
118
export interface BanksResponse extends Response {
119
- data: Array<Bank>;
+ data: Bank[];
120
121
122
export interface CountriesResponse extends Response {
123
- data: Array<Country>;
+ data: Country[];
124
125
126
export interface StatesResponse extends Response {
127
- data: Array<State>;
+ data: State[];
128
0 commit comments