primevue-mirror/components/lib/passthrough/index.d.ts
2024-01-29 12:35:09 +00:00

8 lines
341 B
TypeScript

export declare type PassThroughMergePropsType = ((...args: any) => object | undefined) | boolean | undefined;
export interface PassThroughOptions {
mergeSections?: boolean | undefined;
mergeProps?: PassThroughMergePropsType;
}
export declare function usePassThrough(pt1: object, pt2: object, options?: PassThroughOptions): object;