ngx-t-reports
Version:
Angular module for creating dynamic reports and dashboards. Supports various data sources, custom templates, and real-time updates.
15 lines (14 loc) • 730 B
TypeScript
import { MomentDateAdapter } from '@angular/material-moment-adapter';
import moment from 'moment-timezone';
import * as i0 from "@angular/core";
export declare class TimeZoneAdapterService extends MomentDateAdapter {
private userTimezone;
constructor(dateLocale: string);
parse(value: any, parseFormat: string): moment.Moment | null;
format(date: moment.Moment, displayFormat: string): string;
createDate(year: number, month: number, date: number): moment.Moment;
today(): moment.Moment;
deserialize(value: any): moment.Moment | null;
static ɵfac: i0.ɵɵFactoryDeclaration<TimeZoneAdapterService, [{ optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<TimeZoneAdapterService>;
}