-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
61 lines (57 loc) · 1.23 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
interface IProductProps {
_id: number;
brand: string;
category: string;
description: string;
image: string;
isNew: boolean;
oldPrice: number;
price: number;
title: string;
}
interface IStoreProduct extends IProductProps {
quantity: number;
}
interface IMenuDataItem {
title: string;
list: string[];
}
interface ISideMenuDataItem extends IMenuDataItem {
nextArrow?: boolean | undefined;
}
interface ISideNextMenuDataItem {
[key: string]: IMenuDataItem[];
}
interface IResponseData {
ZipCode: string;
City: string;
State: string;
County: string;
AreaCode: string;
CityType: string;
CityAliasAbbreviation: string;
CityAliasName: string;
Latitude: string;
Longitude: string;
TimeZone: string;
Elevation: string;
CountyFIPS: string;
DayLightSaving: string;
PreferredLastLineKey: string;
ClassificationCode: string;
MultiCounty: string;
StateFIPS: string;
CityStateKey: string;
CityAliasCode: string;
PrimaryRecord: string;
CityMixedCase: string;
CityAliasMixedCase: string;
StateANSI: string;
CountyANSI: string;
FacilityCode: string;
CityDeliveryIndicator: string;
CarrierRouteRateSortation: string;
FinanceNumber: string;
UniqueZIPName: string;
CountyMixedCase: string;
}