mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-04 04:57:40 +08:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { Config } from '../src/core/config'
|
|
import { Component } from './component'
|
|
|
|
declare interface GlobalAPI {
|
|
// new(options?: any): Component
|
|
(options?: any): void
|
|
cid: number
|
|
options: Record<string, any>
|
|
config: Config
|
|
util: Object
|
|
|
|
extend: (options: Object) => typeof Component
|
|
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<any>
|
|
use: (plugin: Function | Object) => GlobalAPI
|
|
mixin: (mixin: Object) => GlobalAPI
|
|
compile: (template: string) => {
|
|
render: Function
|
|
staticRenderFns: Array<Function>
|
|
}
|
|
|
|
directive: (id: string, def?: Function | Object) => Function | Object | void
|
|
component: (
|
|
id: string,
|
|
def?: typeof Component | Object
|
|
) => typeof Component | void
|
|
filter: (id: string, def?: Function) => Function | void
|
|
|
|
observable: <T>(value: T) => T
|
|
|
|
// allow dynamic method registration
|
|
[key: string]: any
|
|
}
|