@v-c/util 0.0.9 → 0.0.10
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.
|
@@ -5,4 +5,4 @@ export declare const skipFlattenKey: unique symbol;
|
|
|
5
5
|
declare function flattenChildren(children?: VNode | VNodeNormalizedChildren, isFilterEmpty?: boolean): any[];
|
|
6
6
|
export { flattenChildren };
|
|
7
7
|
export declare function toPropsRefs<T extends Record<string, any>, K extends keyof T>(obj: T, ...args: K[]): { [key in K]-?: Ref<T[key]>; };
|
|
8
|
-
export declare function removeUndefined<T
|
|
8
|
+
export declare function removeUndefined<T extends Record<string, any>>(obj: T): Partial<T>;
|