@philipab/angular-bootstrap-datetimepicker
Version:
**Note**: This npm package is a fork of dalelotts/angular-bootstrap-datetimepicker, to provide an Ivy-compiled build of the current master branch. The fork was necessary because the official npm package did not release a new version with ivy support, yet.
23 lines (22 loc) • 445 B
TypeScript
/**
* Represents the configuration for a cell in the picker.
*/
export interface DateButton {
/**
* The accessible label for the cell.
* Used by screen readers.
*/
ariaLabel: string;
/**
* The classes to add to the cell button
*/
classes: {};
/**
* The text to display in the button.
*/
display: string;
/**
* The date/time value for the button.
*/
value: number;
}