UNPKG
cowin-apis
Version:
latest (1.0.1)
1.0.1
This is an api client for cowin portal apis
cowin-apis
/
dist
/
Functions
/
MetaData
/
getStates.d.ts
10 lines
(9 loc)
•
194 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
States
{
states
:
State
[];
ttl
:
number
; }
export
interface
State
{
state_id
:
number
;
state_name
:
string
; }
export
declare
const
getStates
:
() =>
Promise
<
States
>;