add hw2
This commit is contained in:
14
node_modules/@headlessui/react/dist/hooks/use-active-press.d.ts
generated
vendored
Normal file
14
node_modules/@headlessui/react/dist/hooks/use-active-press.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export declare function useActivePress({ disabled }?: Partial<{
|
||||
disabled: boolean;
|
||||
}>): {
|
||||
pressed: boolean;
|
||||
pressProps: {
|
||||
onPointerDown?: undefined;
|
||||
onPointerUp?: undefined;
|
||||
onClick?: undefined;
|
||||
} | {
|
||||
onPointerDown: (event: PointerEvent) => void;
|
||||
onPointerUp: () => void;
|
||||
onClick: () => void;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user