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.
|
|
|
declare interface GlobalAPI {
|
|
|
|
cid: number;
|
|
|
|
options: Object;
|
|
|
|
config: Config;
|
|
|
|
util: Object;
|
|
|
|
|
|
|
|
extend: (options: Object) => Function;
|
|
|
|
set: <T>(target: Object | Array<T>, key: string | number, value: T) => T;
|
|
|
|
delete: <T>(target: Object| Array<T>, key: string | number) => void;
|
|
|
|
nextTick: (fn: Function, context?: Object) => void | Promise<*>;
|
|
|
|
use: (plugin: Function | Object) => void;
|
|
|
|
mixin: (mixin: Object) => void;
|
|
|
|
compile: (template: string) => { render: Function, staticRenderFns: Array<Function> };
|
|
|
|
|
|
|
|
directive: (id: string, def?: Function | Object) => Function | Object | void;
|
|
|
|
component: (id: string, def?: Class<Component> | Object) => Class<Component>;
|
|
|
|
filter: (id: string, def?: Function) => Function | void;
|
|
|
|
|
|
|
|
// allow dynamic method registration
|
|
|
|
[key: string]: any
|
|
|
|
};
|