date.service.d.ts 218 Bytes
import moment from 'moment-es6';
import 'moment/locale/th';
export declare class DateService {
    constructor();
    fromNow(startDate: any): string;
    getNow(): moment.Moment;
    convertToTH(date: any): string;
}