UNPKG

igniteui-angular

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

37 lines (36 loc) 807 B
export interface IgxDateTimeEditorEventArgs { readonly oldValue?: Date; newValue?: Date; readonly userInput: string; } /** * Specify a particular date, time or AmPm part. */ export declare enum DatePart { Date = "date", Month = "month", Year = "year", Hours = "hours", Minutes = "minutes", Seconds = "seconds", FractionalSeconds = "fractionalSeconds", AmPm = "ampm", Literal = "literal" } /** @hidden @internal */ export interface DatePartInfo { type: DatePart; start: number; end: number; format: string; } /** Delta values used for spin actions. */ export interface DatePartDeltas { date?: number; month?: number; year?: number; hours?: number; minutes?: number; seconds?: number; fractionalSeconds?: number; }