UNPKG

675 BTypeScriptView Raw
1import { PipeTransform } from '@angular/core';
2import { CalendarEvent } from 'calendar-utils';
3import { CalendarEventTitleFormatter } from '../calendar-event-title-formatter/calendar-event-title-formatter.provider';
4import * as i0 from "@angular/core";
5export declare class CalendarEventTitlePipe implements PipeTransform {
6 private calendarEventTitle;
7 constructor(calendarEventTitle: CalendarEventTitleFormatter);
8 transform(title: string, titleType: string, event: CalendarEvent): string;
9 static ɵfac: i0.ɵɵFactoryDeclaration<CalendarEventTitlePipe, never>;
10 static ɵpipe: i0.ɵɵPipeDeclaration<CalendarEventTitlePipe, "calendarEventTitle", false>;
11}