mirror of
https://github.com/httpjamesm/AnonymousOverflow-hub.git
synced 2024-12-06 19:16:18 +01:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export interface Instance {
|
|
url: string;
|
|
regions: string[];
|
|
operators: string[];
|
|
}
|
|
|
|
export type InstanceList = Record<string, Instance[]>;
|