@authup/client-web-kit
Version:
This package contains vue components.
13 lines • 410 B
TypeScript
type PartialRecordWithNull<T extends Record<string, any>> = {
[K in keyof T]?: T[K] | null;
};
/**
* Assign properties from input to src.
* 'null' values will be transformed to an empty string.
*
* @param src
* @param input
*/
export declare function assignFormProperties<T extends Record<string, any>>(src: T, input?: PartialRecordWithNull<T>): T;
export {};
//# sourceMappingURL=properties.d.ts.map