UNPKG

ntp-time-sync

Version:

Fetches the current time from NTP servers and returns offset information

8 lines (7 loc) 170 B
/** * Author: Meirion Hughes * @see https://stackoverflow.com/a/41980288/740183 */ export type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]>; };