template-project/node_modules/@photostructure/tz-lookup/index.d.ts
2025-05-30 18:13:30 +08:00

9 lines
225 B
TypeScript

/**
* Look up the timezone for a given latitude and longitude.
*
* @throws {Error} if the latitude or longitude are invalid
*/
declare function tz_lookup(latitude: number, longitude: number): string;
export = tz_lookup;