We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b478de6 commit 4a78253Copy full SHA for 4a78253
packages/clients/src/scw/locality.ts
@@ -1,4 +1,5 @@
1
-export type Region = 'fr-par' | 'nl-ams' | 'pl-waw' | string
+/* eslint-disable @typescript-eslint/ban-types */
2
+export type Region = 'fr-par' | 'nl-ams' | 'pl-waw' | (string & {})
3
4
export type Zone =
5
| 'fr-par-1'
@@ -8,4 +9,5 @@ export type Zone =
8
9
| 'nl-ams-2'
10
| 'pl-waw-1'
11
| 'pl-waw-2'
- | string
12
+ | (string & {})
13
+/* eslint-enable @typescript-eslint/ban-types */
0 commit comments