mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-07 11:37:58 +08:00
13 lines
423 B
TypeScript
13 lines
423 B
TypeScript
|
export = Util;
|
||
|
export as namespace Util;
|
||
|
|
||
|
declare namespace Util {
|
||
|
function getMenuItems(...args: any[]): string;
|
||
|
function isZhCN(pathname: string): boolean;
|
||
|
function getLocalizedPathname(path: string, isChinese: boolean): string;
|
||
|
function ping(callback: Function): string;
|
||
|
function isLocalStorageNameSupported(): boolean;
|
||
|
function loadScript(src: string): void;
|
||
|
function getMetaDescription(jml: any): any;
|
||
|
}
|