Blame view

lib/_services/date.service.d.ts 218 Bytes
75f29219   Anan Sangthongtum   first commit
1
2
3
4
5
6
7
8
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;
}