@tucmc/hazel
Version:
Clubs Data Processing Framework
18 lines (17 loc) • 344 B
TypeScript
import { NumberUtil } from '../Number';
interface Time {
t: {
h: string;
m: string;
s: string;
};
d: {
d: string;
m: string;
y: string;
};
}
export declare class TimestampUtil {
static currentTime(timestamp?: number, padMethod?: typeof NumberUtil.zeroPad): Time;
}
export {};