徐总多门店
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.

34 lines
617 B

5 months ago
import SetupDefaults from './setupDefaults'
/**
*
*/
export const VERSION: string;
/**
*
* @param options
*/
export function setup(options: SetupDefaults): SetupDefaults;
/**
* XEUtils
* @param methods
*/
export function mixin(...methods: {[key: string]: any}[]): void;
export interface XEUtilsMethods {
VERSION: typeof VERSION;
setup: typeof setup;
mixin: typeof mixin;
[propertys: string]: any;
}
/**
* JavaScript
*/
declare var XEUtils: XEUtilsMethods
export default XEUtils