-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypings.d.ts
62 lines (55 loc) · 917 Bytes
/
typings.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
62
enum Role {
ADMIN = 'ADMIN',
USER = 'USER',
ROOT_ADMIN = 'ROOT_ADMIN',
}
type User = {
role: Role,
email: string,
name: string,
id: number,
token: string,
}
type Society = {
id: number;
name: string;
state: string;
address: string;
district: string;
dateOfRegistration: string;
areaOfOperation: string;
sectorType: string;
}
type SocietyDataOverYears = {
year: string;
count: number;
}
type SectorsData = {
sector: string;
percentage: number;
}
type StateData = {
state: string;
count: number;
}
type SectorsDataNew = {
sector: string
societies: number
}
type Application = {
id: number;
societyName: string;
state: string;
address: string;
district: string;
userName: string;
contact: string;
pan: string;
tan: string;
serviceTaxNo: string;
email: string;
designation: string;
date: string;
typeOfSociety: string;
status: string;
}