bdo-clock
Version:
A javaScript library to convert real time into Black Desert Online in game time.
10 lines (8 loc) • 346 B
TypeScript
import moment from 'moment';
export declare interface BDOClock {
isDaytime: boolean,
nextDayNightChange: moment.Moment,
timeElapsed: moment.Duration,
toString: string,
}
export default function bdoClock(inp?: moment.MomentInput, format?: moment.MomentFormatSpecification, language?: string, strict?: boolean): BDOClock;