15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
/**
|
|
* Time Functions
|
|
* @public
|
|
* @noSelf
|
|
*/
|
|
declare namespace time {
|
|
|
|
function set_clock_time(hour: int, minute: int, second: int): void;
|
|
function get_clock_hours(): int;
|
|
function get_clock_minutes(): int;
|
|
function get_clock_seconds(): int;
|
|
|
|
}
|
|
|