ant-design/site/theme/template/utils.d.ts

13 lines
423 B
TypeScript
Raw Normal View History

2019-12-26 15:27:52 +08:00
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;
}