Login:Src:Types: add TTimeZoneOption and TCulturesOption types

This commit is contained in:
Darya Umrikhina 2024-07-11 12:09:10 +04:00
parent c0e3ad7bdc
commit 52115b7c31

View File

@ -54,6 +54,19 @@ export type TError =
}
| string;
export type TTimeZoneOption = {
key: string | number;
label?: string;
};
export type TCulturesOption = {
index?: number;
isBeta?: boolean;
key: string | number;
label?: string;
icon?: string | undefined;
};
export type WithLoaderProps = {
isLoaded: boolean;
setIsLoaded(): void;