UNPKG

cowin-apis

Version:

This is an api client for cowin portal apis

10 lines (9 loc) 194 B
export interface States { states: State[]; ttl: number; } export interface State { state_id: number; state_name: string; } export declare const getStates: () => Promise<States>;