@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
11 lines (10 loc) • 440 B
TypeScript
export declare class AsiMomentService {
constructor();
addDays(date: Date, dayNumber: number): Date;
addMonths(date: Date, monthNumber: number): Date;
formatToLocalDate(date: any): string;
formatDate(date: any, pattern?: string): string;
formatDateTime(date: any, pattern?: string): string;
format(date: any, baseFormat: string, pattern?: string): string;
parse(dateString: string, pattern?: string): any;
}