@webilix/ngx-helper-m3
Version:
Helper library for Angular and Material 3
16 lines (15 loc) • 595 B
TypeScript
import { PipeTransform } from '@angular/core';
import { DateFormats } from '../pipe.types';
import * as i0 from "@angular/core";
export declare class NgxHelperDatePipe implements PipeTransform {
transform(value?: Date | null, options?: {
format?: DateFormats;
timezone?: string;
}): string;
transform(value?: number | null, options?: {
format?: DateFormats;
timezone?: string;
}): string;
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperDatePipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<NgxHelperDatePipe, "ngxHelperDate", true>;
}