UNPKG

world-population

Version:

World Population Counter, based on UN World Population Prospects data

12 lines (11 loc) 288 B
/** * UN world population estimates as of 1st January on each year. From World * Population Prospects 2022. Future estimates are based the medium fertility * variant. **/ interface Estimate { year: number; pop: number; } export declare const estimates: Estimate[]; export {};