UNPKG

angular-bootstrap-datetimepicker

Version:

Native Angular (8+) datetime picker component styled by Twitter Bootstrap 4.

29 lines (28 loc) 773 B
/** * @license * Copyright 2013-present Dale Lotts All Rights Reserved. * http://www.dalelotts.com * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/dalelotts/angular-bootstrap-datetimepicker/blob/master/LICENSE */ /** * Emitted when the value of a date/time picker changes. */ export declare class DlDateTimePickerChange<D> { /** * The new value of the picker. */ private readonly _value; /** * Constructs a new instance. * @param newValue * the new value of the date/time picker. */ constructor(newValue: D); /** * Get the new value of the date/time picker. * @returns the new value or null. */ readonly value: D; }