@vue-ui-kit/ant 2.4.3 → 2.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +3 -3
- package/dist/es/index.js +719 -610
- package/dist/index.d.ts +3096 -23
- package/package.json +1 -2
- package/src/declarations/antProxy.ts +21 -1
- package/src/index.ts +1 -0
- package/src/packages/components/PGrid.vue +90 -6
- package/src/packages/components/PromisePicker.vue +22 -14
- package/src/packages/components/RenderAntCell.tsx +1 -1
- package/src/packages/components/RenderDefaultSlots.tsx +6 -2
- package/src/packages/store/renderStore.tsx +1 -1
- package/src/packages/utils/autoViewportBox.ts +160 -0
- package/src/packages/utils/config.ts +4 -0
- package/dist/declarations/antProxy.d.ts +0 -373
- package/dist/declarations/type.d.ts +0 -1
- package/dist/packages/components/CollapseCard.vue.d.ts +0 -29
- package/dist/packages/components/PCanvasTable.vue.d.ts +0 -177
- package/dist/packages/components/PForm.vue.d.ts +0 -22
- package/dist/packages/components/PFormCol.vue.d.ts +0 -23
- package/dist/packages/components/PFormGroup.vue.d.ts +0 -38
- package/dist/packages/components/PGroupBlock.vue.d.ts +0 -16
- package/dist/packages/components/PromisePicker.vue.d.ts +0 -25
- package/dist/packages/components/RenderAntCell.d.ts +0 -28
- package/dist/packages/components/RenderAntItem.d.ts +0 -18
- package/dist/packages/components/RenderDefaultSlots.d.ts +0 -34
- package/dist/packages/components/RenderEditCell.d.ts +0 -25
- package/dist/packages/components/RenderItemSlots.d.ts +0 -25
- package/dist/packages/components/RenderTitleSlots.d.ts +0 -16
- package/dist/packages/hooks/useMessage.d.ts +0 -8
- package/dist/packages/renders/Icon.d.ts +0 -4
- package/dist/packages/renders/TableInput.vue.d.ts +0 -25
- package/dist/packages/store/renderStore.d.ts +0 -16
- package/dist/packages/utils/AFormatters.d.ts +0 -9
- package/dist/packages/utils/config.d.ts +0 -30
- package/dist/packages/utils/core.d.ts +0 -10
- package/dist/packages/utils/is.d.ts +0 -4
- package/dist/packages/utils/treeHelper.d.ts +0 -19
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { PGridInstance, PromisePickerProps } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: <D extends Recordable = Recordable, F extends Recordable = Recordable>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & PromisePickerProps<D, F> & Partial<{}>> & import('vue').PublicProps;
|
|
4
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{
|
|
5
|
-
pick: () => Promise<D[] | {
|
|
6
|
-
row: D;
|
|
7
|
-
field?: string;
|
|
8
|
-
}>;
|
|
9
|
-
pickMultiple: () => Promise<D[] | {
|
|
10
|
-
row: D;
|
|
11
|
-
field?: string;
|
|
12
|
-
}>;
|
|
13
|
-
grid: import('vue').Ref<PGridInstance<D, Recordable<any>> | undefined, PGridInstance<D, Recordable<any>> | undefined>;
|
|
14
|
-
hide: () => void;
|
|
15
|
-
}>): void;
|
|
16
|
-
attrs: any;
|
|
17
|
-
slots: {};
|
|
18
|
-
emit: {};
|
|
19
|
-
}>) => import('vue').VNode & {
|
|
20
|
-
__ctx?: Awaited<typeof __VLS_setup>;
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
23
|
-
type __VLS_PrettifyLocal<T> = {
|
|
24
|
-
[K in keyof T]: T[K];
|
|
25
|
-
} & {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { CellRender, RenderTableParams } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: new <D extends Recordable = Recordable<any>>(props: {
|
|
3
|
-
cellRender: CellRender;
|
|
4
|
-
renderTableParams: RenderTableParams<D>;
|
|
5
|
-
defaultHandler?: {
|
|
6
|
-
[key: string]: (...args: any[]) => any;
|
|
7
|
-
};
|
|
8
|
-
} & {} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps) => import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
9
|
-
cellRender: CellRender;
|
|
10
|
-
renderTableParams: RenderTableParams<D>;
|
|
11
|
-
defaultHandler?: {
|
|
12
|
-
[key: string]: (...args: any[]) => any;
|
|
13
|
-
};
|
|
14
|
-
} & {}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
15
|
-
P: {};
|
|
16
|
-
B: {};
|
|
17
|
-
D: {};
|
|
18
|
-
C: {};
|
|
19
|
-
M: {};
|
|
20
|
-
Defaults: {};
|
|
21
|
-
}, {
|
|
22
|
-
cellRender: CellRender;
|
|
23
|
-
renderTableParams: RenderTableParams<D>;
|
|
24
|
-
defaultHandler?: {
|
|
25
|
-
[key: string]: (...args: any[]) => any;
|
|
26
|
-
};
|
|
27
|
-
} & {}, {}, {}, {}, {}, {}>;
|
|
28
|
-
export default _default;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { ItemRender, RenderFormParams } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: import('vue').DefineSetupFnComponent<{
|
|
3
|
-
itemRender: ItemRender;
|
|
4
|
-
renderFormParams: RenderFormParams<Recordable<any>>;
|
|
5
|
-
defaultHandler: {
|
|
6
|
-
[key: string]: (...args: any[]) => any;
|
|
7
|
-
};
|
|
8
|
-
}, ("trigger" | "delayTrigger")[], {}, {
|
|
9
|
-
itemRender: ItemRender;
|
|
10
|
-
renderFormParams: RenderFormParams<Recordable<any>>;
|
|
11
|
-
defaultHandler: {
|
|
12
|
-
[key: string]: (...args: any[]) => any;
|
|
13
|
-
};
|
|
14
|
-
} & {
|
|
15
|
-
onTrigger?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
onDelayTrigger?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
}, import('vue').PublicProps>;
|
|
18
|
-
export default _default;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { ColumnProps } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: new <D extends Recordable = Recordable<any>>(props: {
|
|
3
|
-
tableData: D[];
|
|
4
|
-
row: D;
|
|
5
|
-
column: ColumnProps<D>;
|
|
6
|
-
rowIndex: number;
|
|
7
|
-
defaultHandler?: {
|
|
8
|
-
[key: string]: (...args: any[]) => any;
|
|
9
|
-
};
|
|
10
|
-
} & {} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps) => import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
11
|
-
tableData: D[];
|
|
12
|
-
row: D;
|
|
13
|
-
column: ColumnProps<D>;
|
|
14
|
-
rowIndex: number;
|
|
15
|
-
defaultHandler?: {
|
|
16
|
-
[key: string]: (...args: any[]) => any;
|
|
17
|
-
};
|
|
18
|
-
} & {}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
19
|
-
P: {};
|
|
20
|
-
B: {};
|
|
21
|
-
D: {};
|
|
22
|
-
C: {};
|
|
23
|
-
M: {};
|
|
24
|
-
Defaults: {};
|
|
25
|
-
}, {
|
|
26
|
-
tableData: D[];
|
|
27
|
-
row: D;
|
|
28
|
-
column: ColumnProps<D>;
|
|
29
|
-
rowIndex: number;
|
|
30
|
-
defaultHandler?: {
|
|
31
|
-
[key: string]: (...args: any[]) => any;
|
|
32
|
-
};
|
|
33
|
-
} & {}, {}, {}, {}, {}, {}>;
|
|
34
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { CellRender, RenderTableParams } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: new <D extends Recordable = Recordable<any>>(props: {
|
|
3
|
-
cellRender: CellRender;
|
|
4
|
-
renderTableParams: RenderTableParams<D>;
|
|
5
|
-
} & {
|
|
6
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
7
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps) => import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
8
|
-
cellRender: CellRender;
|
|
9
|
-
renderTableParams: RenderTableParams<D>;
|
|
10
|
-
} & {
|
|
11
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "blur"[], import('vue').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
13
|
-
P: {};
|
|
14
|
-
B: {};
|
|
15
|
-
D: {};
|
|
16
|
-
C: {};
|
|
17
|
-
M: {};
|
|
18
|
-
Defaults: {};
|
|
19
|
-
}, {
|
|
20
|
-
cellRender: CellRender;
|
|
21
|
-
renderTableParams: RenderTableParams<D>;
|
|
22
|
-
} & {
|
|
23
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
}, {}, {}, {}, {}, {}>;
|
|
25
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { PFormItemProps } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: new <F extends Recordable = Recordable<any>>(props: {
|
|
3
|
-
formData: F;
|
|
4
|
-
item: PFormItemProps<F>;
|
|
5
|
-
passTrigger: (cusFields?: string | string[]) => void;
|
|
6
|
-
passDelayTrigger: (cusFields?: string | string[], time?: number) => void;
|
|
7
|
-
} & {} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps) => import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
8
|
-
formData: F;
|
|
9
|
-
item: PFormItemProps<F>;
|
|
10
|
-
passTrigger: (cusFields?: string | string[]) => void;
|
|
11
|
-
passDelayTrigger: (cusFields?: string | string[], time?: number) => void;
|
|
12
|
-
} & {}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
13
|
-
P: {};
|
|
14
|
-
B: {};
|
|
15
|
-
D: {};
|
|
16
|
-
C: {};
|
|
17
|
-
M: {};
|
|
18
|
-
Defaults: {};
|
|
19
|
-
}, {
|
|
20
|
-
formData: F;
|
|
21
|
-
item: PFormItemProps<F>;
|
|
22
|
-
passTrigger: (cusFields?: string | string[]) => void;
|
|
23
|
-
passDelayTrigger: (cusFields?: string | string[], time?: number) => void;
|
|
24
|
-
} & {}, {}, {}, {}, {}, {}>;
|
|
25
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ColumnProps } from '../../declarations/antProxy';
|
|
2
|
-
declare const _default: new <D extends Recordable = Recordable<any>>(props: {
|
|
3
|
-
column: ColumnProps<D>;
|
|
4
|
-
} & {} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps) => import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
5
|
-
column: ColumnProps<D>;
|
|
6
|
-
} & {}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, {}, {}, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
7
|
-
P: {};
|
|
8
|
-
B: {};
|
|
9
|
-
D: {};
|
|
10
|
-
C: {};
|
|
11
|
-
M: {};
|
|
12
|
-
Defaults: {};
|
|
13
|
-
}, {
|
|
14
|
-
column: ColumnProps<D>;
|
|
15
|
-
} & {}, {}, {}, {}, {}, {}>;
|
|
16
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const $confirm: ({ title, content }: {
|
|
2
|
-
title: any;
|
|
3
|
-
content: any;
|
|
4
|
-
}) => Promise<void>;
|
|
5
|
-
export declare const $success: (content: import('ant-design-vue/es/_util/type').VueNode | import('ant-design-vue').MessageArgsProps, duration?: number, onClose?: import('ant-design-vue/es/message').ConfigOnClose) => import('ant-design-vue/es/message').MessageType;
|
|
6
|
-
export declare const $error: (content: import('ant-design-vue/es/_util/type').VueNode | import('ant-design-vue').MessageArgsProps, duration?: number, onClose?: import('ant-design-vue/es/message').ConfigOnClose) => import('ant-design-vue/es/message').MessageType;
|
|
7
|
-
export declare const $info: (content: import('ant-design-vue/es/_util/type').VueNode | import('ant-design-vue').MessageArgsProps, duration?: number, onClose?: import('ant-design-vue/es/message').ConfigOnClose) => import('ant-design-vue/es/message').MessageType;
|
|
8
|
-
export declare const $warning: (content: import('ant-design-vue/es/_util/type').VueNode | import('ant-design-vue').MessageArgsProps, duration?: number, onClose?: import('ant-design-vue/es/message').ConfigOnClose) => import('ant-design-vue/es/message').MessageType;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { TableProps } from 'ant-design-vue';
|
|
2
|
-
import { ColumnProps } from '../../declarations/antProxy';
|
|
3
|
-
declare const _default: <D extends Recordable = Recordable>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{
|
|
5
|
-
tableConfig: TableProps<any>;
|
|
6
|
-
modelValue: D[];
|
|
7
|
-
editColumns: ColumnProps<Recordable<any>>[];
|
|
8
|
-
}> & Omit<{
|
|
9
|
-
readonly tableConfig: TableProps<any>;
|
|
10
|
-
readonly modelValue: D[];
|
|
11
|
-
readonly editColumns: ColumnProps<Recordable<any>>[];
|
|
12
|
-
readonly onTrigger?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "tableConfig" | "modelValue" | "editColumns">, "onTrigger" | "onUpdate:modelValue" | ("tableConfig" | "modelValue" | "editColumns")> & {} & Partial<{}>> & import('vue').PublicProps;
|
|
15
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
16
|
-
attrs: any;
|
|
17
|
-
slots: {};
|
|
18
|
-
emit: (event: "trigger" | "update:modelValue", ...args: any[]) => void;
|
|
19
|
-
}>) => import('vue').VNode & {
|
|
20
|
-
__ctx?: Awaited<typeof __VLS_setup>;
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
23
|
-
type __VLS_PrettifyLocal<T> = {
|
|
24
|
-
[K in keyof T]: T[K];
|
|
25
|
-
} & {};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { RenderFormParams, RenderOptions, RenderTableParams } from '../../declarations/antProxy';
|
|
2
|
-
import { Ref } from 'vue';
|
|
3
|
-
export interface RenderWorkshop {
|
|
4
|
-
renderItemContent?: (options: RenderOptions, params: RenderFormParams, defaultHandler: Recordable) => any;
|
|
5
|
-
renderDefault?: (options: RenderOptions, params: RenderTableParams, defaultHandler: Recordable) => any;
|
|
6
|
-
renderEdit?: (model: Ref<any>, options: RenderOptions, params: RenderTableParams, emit?: (e: 'blur', value: any) => void) => any;
|
|
7
|
-
}
|
|
8
|
-
interface RenderFactory {
|
|
9
|
-
[key: string]: RenderWorkshop;
|
|
10
|
-
}
|
|
11
|
-
export declare const addRender: (name: string, { renderItemContent, renderDefault, renderEdit }: RenderWorkshop) => void;
|
|
12
|
-
declare const _default: {
|
|
13
|
-
renders: RenderFactory;
|
|
14
|
-
addRender: (name: string, { renderItemContent, renderDefault, renderEdit }: RenderWorkshop) => void;
|
|
15
|
-
};
|
|
16
|
-
export default _default;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CellFuncArg, ColumnProps, PFormatter } from '../../declarations/antProxy';
|
|
2
|
-
export declare const antFormatters: PFormatter;
|
|
3
|
-
export declare const renderAntFormat: <D extends Recordable = Recordable>(formatter: string | [string, ...Array<any>] | ((arg: CellFuncArg<D>) => any), { record, index, column, field, }: {
|
|
4
|
-
record: D;
|
|
5
|
-
index: number;
|
|
6
|
-
field?: string;
|
|
7
|
-
column: ColumnProps<D>;
|
|
8
|
-
}) => any;
|
|
9
|
-
export declare const addFormatter: (formatter: Record<string, (a: CellFuncArg, ...args: any[]) => any>) => void;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { PFormProps, PGridProps } from '../../declarations/antProxy';
|
|
2
|
-
import { ConfigType } from 'e-virt-table';
|
|
3
|
-
import { VNode } from 'vue';
|
|
4
|
-
export interface UIKitConfig {
|
|
5
|
-
form?: {
|
|
6
|
-
labelCol?: any;
|
|
7
|
-
wrapperCol?: any;
|
|
8
|
-
};
|
|
9
|
-
grid?: {
|
|
10
|
-
align?: 'left' | 'right' | 'center';
|
|
11
|
-
lazyReset?: boolean;
|
|
12
|
-
fitHeight?: number;
|
|
13
|
-
fitCanvasHeight?: number;
|
|
14
|
-
striped?: boolean;
|
|
15
|
-
};
|
|
16
|
-
canvasTable?: ConfigType;
|
|
17
|
-
/**
|
|
18
|
-
* 自定义 tooltip 渲染函数,替换全局所有 a-tooltip。
|
|
19
|
-
* @param defaultSlot 原 tooltip 触发元素(图标等)
|
|
20
|
-
* @param content tooltip 内容,字符串或返回 VNode 的函数
|
|
21
|
-
*/
|
|
22
|
-
renderTooltip?: (defaultSlot: () => VNode, content: string | (() => VNode)) => VNode;
|
|
23
|
-
}
|
|
24
|
-
export declare function setUIKitConfig(config: Partial<UIKitConfig>): void;
|
|
25
|
-
export declare function getTooltipRenderer(): UIKitConfig['renderTooltip'];
|
|
26
|
-
export declare function getUIKitConfig(): UIKitConfig;
|
|
27
|
-
export declare function getFormDefaults(): Partial<PFormProps>;
|
|
28
|
-
export declare function getGridDefaults(): Partial<PGridProps>;
|
|
29
|
-
export declare function getCanvasTableDefaults(): ConfigType;
|
|
30
|
-
export declare function resetUIKitConfig(): void;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ColumnProps, Responsive } from '../../declarations/antProxy';
|
|
2
|
-
import { TableColumnGroupType, TableColumnType } from 'ant-design-vue';
|
|
3
|
-
import { WatchOptions, WatchSource } from 'vue';
|
|
4
|
-
export declare const cleanCol: (col: ColumnProps) => TableColumnType | TableColumnGroupType<Recordable>;
|
|
5
|
-
export declare const defaultItemResponsive: Responsive;
|
|
6
|
-
export declare const defaultLabelCol: Responsive;
|
|
7
|
-
export declare const labelColDict: Record<number, Responsive>;
|
|
8
|
-
export declare const get24rest: (exist: number[]) => number;
|
|
9
|
-
export declare const getButtonResponsive: (itemResponsive: number | Responsive[]) => any;
|
|
10
|
-
export declare function watchPreviousDeep<T extends object>(source: WatchSource<T>, cb: (value: T, oldValue: T, onCleanup: () => void) => void, options?: WatchOptions): import('vue').WatchHandle;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
interface TreeConfig {
|
|
2
|
-
children?: string;
|
|
3
|
-
}
|
|
4
|
-
export declare const eachTree: <T extends Recordable>(treeData: ((T | (T & {
|
|
5
|
-
children?: (T & /*elided*/ any)[] | undefined;
|
|
6
|
-
})) & {
|
|
7
|
-
children?: ((T | (T & {
|
|
8
|
-
children?: (T & /*elided*/ any)[] | undefined;
|
|
9
|
-
})) & /*elided*/ any)[] | undefined;
|
|
10
|
-
})[], iterate: (item: T | (T & {
|
|
11
|
-
children?: (T & /*elided*/ any)[] | undefined;
|
|
12
|
-
}) | ((T | (T & {
|
|
13
|
-
children?: (T & /*elided*/ any)[] | undefined;
|
|
14
|
-
})) & {
|
|
15
|
-
children?: ((T | (T & {
|
|
16
|
-
children?: (T & /*elided*/ any)[] | undefined;
|
|
17
|
-
})) & /*elided*/ any)[] | undefined;
|
|
18
|
-
})) => any, options?: TreeConfig, context?: any) => any;
|
|
19
|
-
export {};
|