/** * The FILETIME structure is a 64-bit value that represents the number of 100-nanosecond intervals that have elapsed since January 1, 1601, Coordinated Universal Time (UTC). */ export type FileTime = { /** * A 32-bit unsigned integer that contains the low-order bits of the file time. */ dwLowDateTime: number; /** * A 32-bit unsigned integer that contains the high-order bits of the file time. */ dwHighDateTime: number; };