UNPKG

@alifd/next

Version:

A configurable component library for web built on React.

10 lines (9 loc) 284 B
import type { ObjectType } from './types'; /** * 过滤 undefined 类型的值 */ export declare function filterUndefinedValue(object: ObjectType): ObjectType; /** * 从 obj 中去除 subObj */ export declare function stripObject(obj: ObjectType, subObj: ObjectType): ObjectType;