完全跑通1.0版本
This commit is contained in:
18
frontend/node_modules/element-plus/lib/hooks/use-ordered-children/index.d.ts
generated
vendored
Normal file
18
frontend/node_modules/element-plus/lib/hooks/use-ordered-children/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import * as _$vue from "vue";
|
||||
import { ComponentInternalInstance, VNode } from "vue";
|
||||
|
||||
//#region ../../packages/hooks/use-ordered-children/index.d.ts
|
||||
type ChildEssential = {
|
||||
uid: number;
|
||||
getVnode: () => VNode;
|
||||
};
|
||||
declare const useOrderedChildren: <T extends ChildEssential>(vm: ComponentInternalInstance, childComponentName: string) => {
|
||||
children: _$vue.ShallowRef<T[], T[]>;
|
||||
addChild: (child: T) => void;
|
||||
removeChild: (child: T) => void;
|
||||
ChildrenSorter: _$vue.DefineComponent<{}, () => VNode<_$vue.RendererNode, _$vue.RendererElement, {
|
||||
[key: string]: any;
|
||||
}> | null, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
|
||||
};
|
||||
//#endregion
|
||||
export { useOrderedChildren };
|
||||
Reference in New Issue
Block a user