芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/node_modules/vue/src/types/global-api.ts
import { Config } from 'core/config' import { Component } from './component' /** * @internal */ export interface GlobalAPI { // new(options?: any): Component (options?: any): void cid: number options: Record
config: Config util: Object extend: (options: typeof Component | object) => typeof Component set:
(target: Object | Array
, key: string | number, value: T) => T delete:
(target: Object | Array
, key: string | number) => void nextTick: (fn: Function, context?: Object) => void | Promise
use: (plugin: Function | Object) => GlobalAPI mixin: (mixin: Object) => GlobalAPI compile: (template: string) => { render: Function staticRenderFns: Array
} 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:
(value: T) => T // allow dynamic method registration [key: string]: any }