persona-community-5/.pnpm-store/v3/files/81/86b5d34333a62f93c0292b0dd6618dca9fd7164fba76d977490d53213d426fd43cfa7c7f94bfcb34fd89b75eafd3a332da5560ecddeb4b314005a88eacbd31
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

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;