ng-business-hours
Version:
Angular component allows you to show and manage business hours
8 lines (7 loc) • 337 B
TypeScript
import { PipeTransform } from '@angular/core';
import { NgBusinessHoursLocaleService } from './ng-business-hours-locale.service';
export declare class LocalizedDatePipe implements PipeTransform {
private localeService;
constructor(localeService: NgBusinessHoursLocaleService);
transform(value: any, pattern?: string): any;
}