You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
441 B
9 lines
441 B
import type { GenerateConfig } from '../generate';
|
|
import type { CustomFormat, Locale } from '../interface';
|
|
export declare type ValueTextConfig<DateType> = {
|
|
formatList: (string | CustomFormat<DateType>)[];
|
|
generateConfig: GenerateConfig<DateType>;
|
|
locale: Locale;
|
|
};
|
|
export default function useValueTexts<DateType>(value: DateType | null, { formatList, generateConfig, locale }: ValueTextConfig<DateType>): [string[], string];
|