UNPKG

369 BTypeScriptView Raw
1import { Framework } from './types';
2export declare const frameworkChangeObservers: (() => void)[];
3export declare const detectFramework: () => Framework;
4/**
5 * @internal Setup observer callback that will be called everytime the framework changes
6 */
7export declare const observeFrameworkChanges: (fcn: () => void) => void;
8export declare function clearCache(): void;