UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

28 lines (27 loc) 661 B
export interface OldApiProps { /** * @deprecated * The date format for the text display */ dateFormat?: string; /** * @deprecated * A callback function to format date */ dateFormatter?: (date: Date) => string; /** * @deprecated * The time format for the text display */ timeFormat?: string; /** * @deprecated * A callback function to format time */ timeFormatter?: (date: Date) => string; } type Mode = 'date' | 'time'; declare const useOldApi: (props: OldApiProps) => { getStringValue: (value: Date, mode: Mode) => string | undefined; }; export default useOldApi;