UNPKG

@maskito/kit

Version:

The optional framework-agnostic Maskito's package with ready-to-use masks

10 lines (9 loc) 385 B
import type { MaskitoTimeMode, MaskitoTimeSegments } from '../../types'; export interface MaskitoTimeParams { readonly mode: MaskitoTimeMode; readonly timeSegmentMaxValues?: Partial<MaskitoTimeSegments<number>>; readonly timeSegmentMinValues?: Partial<MaskitoTimeSegments<number>>; readonly step?: number; readonly prefix?: string; readonly postfix?: string; }