interface NgModelOptions {
    allowInvalid: boolean;
    debounce: number | {};
    getterSetter: boolean;
    timeSecondsFormat: string;
    timeStripZeroSeconds: boolean;
    timezone: string;
    updateOn: string;
}

Properties

allowInvalid: boolean

Allows invalid models.

debounce: number | {}

The debounce delay.

getterSetter: boolean

Indicates if getter/setter syntax is allowed.

timeSecondsFormat: string

The format for seconds in time and datetime-local inputs.

timeStripZeroSeconds: boolean

Indicates if zero seconds should be stripped.

timezone: string

The timezone.

updateOn: string

The event to update on.