@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
27 lines (26 loc) • 1.31 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DependencyDomService } from '../dependencies/dependency-dom.service';
import { TimelineViewType } from '../models/timeline-view';
import { ViewBase } from './view-base';
import { OptionChangesService } from '../common/option-changes.service';
import * as i0 from "@angular/core";
/**
* Represents the Gantt timeline week view component.
*
* @example
* ```html
* <kendo-gantt-timeline-week-view></kendo-gantt-timeline-week-view>
* ```
*/
export declare class TimelineWeekViewComponent extends ViewBase {
/**
* Specifies the type for this view (`week`).
*/
readonly type: TimelineViewType;
constructor(optionChangesService: OptionChangesService, dependencyDomService: DependencyDomService);
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineWeekViewComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TimelineWeekViewComponent, "kendo-gantt-timeline-week-view", never, {}, {}, never, never, true, never>;
}