first commit
This commit is contained in:
7
frontend/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.d.ts
generated
vendored
Normal file
7
frontend/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.d.ts
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import * as React from 'react';
|
||||
import type { PickerRef } from '../../interface';
|
||||
type PickerRefType<OptionType> = Omit<PickerRef, 'focus'> & {
|
||||
focus: (options?: OptionType) => void;
|
||||
};
|
||||
export default function usePickerRef<OptionType>(ref: React.Ref<PickerRefType<OptionType>>): React.MutableRefObject<PickerRefType<OptionType>>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user