123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { IWordsData, IFilterType } from './props';
- export declare function safeJSONparse(data: string): object;
- export declare function isWordsDataEmpty(arr: any): boolean;
- export declare function clearNumberInStr(str: string): string;
- export declare function formatZDatas(datas?: any[]): any[];
- export declare function matchWordsRecommend(wordsData?: IWordsData, inputValue?: string, filterKey?: IFilterType): IWordsData;
- export declare function wordsFilter(wordsData?: IWordsData, inputValue?: string, filterKey?: IFilterType): IWordsData;
- export declare function wordsSorter(wordsData: IWordsData, inputValue: string, filterKey?: IFilterType): IWordsData;
- export declare function loadFontFace(): Promise<void>;
|