mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
19 lines
654 B
TypeScript
19 lines
654 B
TypeScript
import type { Component, ComponentClass, ForwardedRef } from 'react';
|
|
import type { PickerProps, RangePickerProps } from '.';
|
|
|
|
export interface CommonPickerMethods {
|
|
focus: () => void;
|
|
blur: () => void;
|
|
}
|
|
|
|
export interface PickerComponentClass<P = {}, S = unknown> extends ComponentClass<P, S> {
|
|
new (...args: ConstructorParameters<ComponentClass<P, S>>): InstanceType<ComponentClass<P, S>> &
|
|
CommonPickerMethods;
|
|
}
|
|
|
|
export type PickerRef<P> = ForwardedRef<Component<P> & CommonPickerMethods>;
|
|
|
|
export type DatePickRef<DateType> = PickerRef<PickerProps<DateType>>;
|
|
|
|
export type RangePickerRef<DateType> = PickerRef<RangePickerProps<DateType>>;
|