You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
1.1 KiB
1 lines
1.1 KiB
{"version":3,"file":"date-range-picker.d.ts","sources":["date-range-picker.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { MatDatepickerBase, MatDatepickerContent, MatDatepickerControl } from './datepicker-base';\nimport { DateRange } from './date-selection-model';\n/**\n * Input that can be associated with a date range picker.\n * @docs-private\n */\nexport interface MatDateRangePickerInput<D> extends MatDatepickerControl<D> {\n comparisonStart: D | null;\n comparisonEnd: D | null;\n}\n/** Component responsible for managing the date range picker popup/dialog. */\nexport declare class MatDateRangePicker<D> extends MatDatepickerBase<MatDateRangePickerInput<D>, DateRange<D>, D> {\n protected _forwardContentValues(instance: MatDatepickerContent<DateRange<D>, D>): void;\n}\n"]}
|