ng-devui
Version:
DevUI components based on Angular
18 lines (17 loc) • 897 B
TypeScript
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
import { GanttService } from '../gantt.service';
import * as i0 from "@angular/core";
export declare class GanttMilestoneComponent implements OnInit, OnChanges, OnDestroy {
private ganttService;
startDate: Date;
title: string;
id: string;
left: number;
private ganttScaleStatusHandler;
constructor(ganttService: GanttService);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<GanttMilestoneComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<GanttMilestoneComponent, "d-gantt-milestone", never, { "startDate": { "alias": "startDate"; "required": false; }; "title": { "alias": "title"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
}