/** * TODO(v6): use naming from Intl * ```ts * export type MaskitoTimeSegments = Record< * keyof Pick< * Intl.DateTimeFormatPartTypesRegistry, * 'fractionalSecond' | 'hour' | 'minute' | 'second' * >, * T * >; * ``` */ export interface MaskitoTimeSegments { hours: T; minutes: T; seconds: T; milliseconds: T; } //# sourceMappingURL=time-segments.d.ts.map