@taiga-ui/core
Version:
Core library for creating Angular components and applications using Taiga UI
12 lines (11 loc) • 578 B
TypeScript
import { type PipeTransform } from '@angular/core';
import { type TuiDay, type TuiMonth } from '@taiga-ui/cdk/date-time';
import * as i0 from "@angular/core";
export declare class TuiCalendarSheetPipe implements PipeTransform {
private readonly firstDayOfWeek;
private currentMonth;
private currentSheet;
transform(month: TuiMonth, showAdjacentDays?: boolean): ReadonlyArray<readonly TuiDay[]>;
static ɵfac: i0.ɵɵFactoryDeclaration<TuiCalendarSheetPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<TuiCalendarSheetPipe, "tuiCalendarSheet", true>;
}