ngx-mat-lib
Version:
A bunch of utilities and components to use in your Angular 7+ apps!
12 lines (11 loc) • 364 B
TypeScript
export declare const xmatTimeSeparator: string;
export declare const xmatDoubleO: string;
export declare class XmatTime {
hours: string;
minutes: string;
constructor(hours?: string | number, minutes?: string | number);
getFullTime(sep?: string): string;
getHours(): number;
getMinutes(): number;
private _addLeadingZeroes;
}