SYMBOL INDEX (54 symbols across 12 files) FILE: dist/angular-moment-picker.js function __webpack_require__ (line 7) | function __webpack_require__(moduleId) { function Directive (line 213) | function Directive($timeout, $sce, $log, $window, provider, $compile, $t... function Provider (line 700) | function Provider() { function DayView (line 758) | function DayView($scope, $ctrl, provider) { function DecadeView (line 811) | function DecadeView($scope, $ctrl, provider) { function HourView (line 864) | function HourView($scope, $ctrl, provider) { function MinuteView (line 962) | function MinuteView($scope, $ctrl, provider) { function MonthView (line 1041) | function MonthView($scope, $ctrl, provider) { function YearView (line 1100) | function YearView($scope, $ctrl, provider) { FILE: src/definitions.d.ts type ViewString (line 5) | type ViewString = 'decade' | 'year' | 'month' | 'day' | 'hour' | 'minute'; type Value (line 7) | type Value = string | number; type Position (line 9) | type Position = 'top left' | 'top right' | 'bottom left' | 'bottom right'; type IDirectiveScope (line 11) | interface IDirectiveScope extends ng.IScope { type IUtility (line 39) | interface IUtility { type IViewItem (line 48) | interface IViewItem { type IView (line 61) | interface IView { type IViewHeaderButton (line 70) | interface IViewHeaderButton { type IDirectiveScopeInternal (line 76) | interface IDirectiveScopeInternal extends IDirectiveScope, IProviderOpti... type IModelValidators (line 142) | interface IModelValidators extends ng.IModelValidators { type IModelController (line 147) | interface IModelController extends ng.INgModelController { FILE: src/directive.ts class Directive (line 11) | class Directive implements ng.IDirective { method constructor (line 42) | constructor( FILE: src/provider.ts type IProviderOptions (line 4) | interface IProviderOptions { class Provider (line 48) | class Provider implements angular.IServiceProvider { method options (line 91) | public options(options: IProviderOptions): IProviderOptions { method $get (line 96) | public $get(): IProviderOptions { FILE: src/utility.ts constant KEYS (line 5) | const KEYS = { up: 38, down: 40, left: 37, right: 39, escape: 27, enter:... FILE: src/views/dayView.ts class DayView (line 5) | class DayView implements IView { method constructor (line 9) | constructor( method render (line 14) | public render(): string { method set (line 42) | public set(hour: IViewItem): void { FILE: src/views/decadeView.ts class DecadeView (line 5) | class DecadeView implements IView { method constructor (line 9) | constructor( method render (line 14) | public render(): string { method set (line 41) | public set(year: IViewItem): void { FILE: src/views/hourView.ts class HourView (line 7) | class HourView implements IView { method constructor (line 11) | constructor( method render (line 16) | public render(): string { method set (line 49) | public set(minute: IViewItem): void { method highlightClosest (line 56) | public highlightClosest(): void { FILE: src/views/minuteView.ts class MinuteView (line 6) | class MinuteView implements IView { method constructor (line 10) | constructor( method render (line 15) | public render(): string { method set (line 48) | public set(second: IViewItem): void { method highlightClosest (line 55) | public highlightClosest(): void { FILE: src/views/monthView.ts class MonthView (line 7) | class MonthView implements IView { method constructor (line 12) | constructor( method render (line 17) | public render(): string { method set (line 52) | public set(day: IViewItem): void { FILE: src/views/yearView.ts class YearView (line 6) | class YearView implements IView { method constructor (line 10) | constructor( method render (line 15) | public render(): string { method set (line 42) | public set(month: IViewItem): void { FILE: tests/properties/keyboard.ts type MockKeyboardKeys (line 15) | type MockKeyboardKeys = 'up' | 'down' | 'left' | 'right' | 'enter' | 'es...