You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
371 B
13 lines
371 B
import { MenuDataItem } from '../typings';
|
|
export declare const getOpenKeysFromMenuData: (menuData?: MenuDataItem[] | undefined) => string[] | undefined;
|
|
/**
|
|
* #1890ff -> daybreak
|
|
* @param val
|
|
*/
|
|
export declare function genThemeToString(val?: string): string;
|
|
/**
|
|
* daybreak-> #1890ff
|
|
* @param val
|
|
*/
|
|
export declare function genStringToTheme(val?: string): string;
|