UNPKG

357 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6import { NbCalendarRange } from './calendar-range.component';
7export declare abstract class NbBaseCalendarRangeCell<D> {
8 abstract selectedValue: NbCalendarRange<D>;
9 get hasRange(): boolean;
10}