15 lines
468 B
Plaintext
15 lines
468 B
Plaintext
import type { Region } from '../config/types';
|
|
export declare const DEFAULT_REGION = "us";
|
|
export declare const DOMAINS: {
|
|
us: string;
|
|
eu: string;
|
|
};
|
|
export declare const AVAILABLE_REGIONS: Region[];
|
|
export declare function getDomains(): {
|
|
us: string;
|
|
eu: string;
|
|
};
|
|
export declare function setRedoclyDomain(domain: string): void;
|
|
export declare function getRedoclyDomain(): string;
|
|
export declare function isRedoclyRegistryURL(link: string): boolean;
|