mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
50 lines
734 B
TypeScript
50 lines
734 B
TypeScript
import { Vue, VueConstructor } from "./vue";
|
|
|
|
|
|
declare global
|
|
{
|
|
const Vue: VueConstructor<Vue>;
|
|
}
|
|
|
|
// export default Vue;
|
|
|
|
// export as namespace Vue;
|
|
|
|
export
|
|
{
|
|
CreateElement,
|
|
VueConstructor
|
|
} from "./vue";
|
|
|
|
export
|
|
{
|
|
Component,
|
|
AsyncComponent,
|
|
ComponentOptions,
|
|
FunctionalComponentOptions,
|
|
RenderContext,
|
|
PropType,
|
|
PropOptions,
|
|
ComputedOptions,
|
|
WatchHandler,
|
|
WatchOptions,
|
|
WatchOptionsWithHandler,
|
|
DirectiveFunction,
|
|
DirectiveOptions
|
|
} from "./options";
|
|
|
|
export
|
|
{
|
|
PluginFunction,
|
|
PluginObject
|
|
} from "./plugin";
|
|
|
|
export
|
|
{
|
|
VNodeChildren,
|
|
VNodeChildrenArrayContents,
|
|
VNode,
|
|
VNodeComponentOptions,
|
|
VNodeData,
|
|
VNodeDirective
|
|
} from "./vnode"; |