mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
8 lines
341 B
TypeScript
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;
|