Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
13 lines
446 B
TypeScript
13 lines
446 B
TypeScript
/**
|
|
* Add keys, values of `defaultProps` that does not exist in `props`
|
|
* @param {object} defaultProps
|
|
* @param {object} props
|
|
* @returns {object} resolved props
|
|
*/
|
|
export default function resolveProps<T extends {
|
|
components?: Record<string, unknown>;
|
|
componentsProps?: Record<string, unknown>;
|
|
slots?: Record<string, unknown>;
|
|
slotProps?: Record<string, unknown>;
|
|
} & Record<string, unknown>>(defaultProps: T, props: T): T;
|