12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
|
|
export type FloatingVueConfig = any;
|
||
|
|
export declare const config: FloatingVueConfig;
|
||
|
|
/**
|
||
|
|
* Get default config value depending on theme
|
||
|
|
*/
|
||
|
|
export declare function getDefaultConfig(theme: string, key: string): any;
|
||
|
|
/**
|
||
|
|
* Theme CSS inheritance
|
||
|
|
*/
|
||
|
|
export declare function getThemeClasses(theme: string): string[];
|
||
|
|
export declare function getAllParentThemes(theme: string): string[];
|