@betokyo/ui-components
Version:
As part of a school project, the BeTokyo UI components library allows us to reuse components in each of our web apps.
19 lines (18 loc) • 665 B
TypeScript
import { DatePipe } from '@angular/common';
import * as i0 from "@angular/core";
export declare class BookingSummaryComponent {
private datePipe;
booking: BookingSummaryModel;
constructor(datePipe: DatePipe);
date(): string | null;
time(): string | null;
static ɵfac: i0.ɵɵFactoryDeclaration<BookingSummaryComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<BookingSummaryComponent, "ui-booking-summary", never, { "booking": "booking"; }, {}, never, never, false, never>;
}
export interface BookingSummaryModel {
service: string;
resource: string;
status: string | undefined;
price: number;
date: Date;
}