7 lines
386 B
TypeScript
7 lines
386 B
TypeScript
declare const globalThis: ServiceWorkerGlobalScope & WorkerGlobalScope & SharedWorkerGlobalScope & Window;
|
|
|
|
export const IS_MULTIACCOUNT_SUPPORTED = 'SharedWorker' in globalThis;
|
|
export const IS_INTL_LIST_FORMAT_SUPPORTED = 'ListFormat' in Intl;
|
|
export const IS_BAD_URL_PARSER = new URL('tg://host').host !== 'host';
|
|
export const ARE_WEBCODECS_SUPPORTED = 'VideoDecoder' in globalThis;
|