set-system-clock
Version:
Sets the system date and time.
12 lines (11 loc) • 319 B
TypeScript
import WindowsDateTimeControl from './windows.clock';
export interface IDateTimeControl {
setDateTime(dateTime: Date, options: any): any;
}
export declare enum Platform {
WINDOWS = "win32",
LINUX = "linux",
}
export declare const Controllers: {
[x: string]: typeof WindowsDateTimeControl;
};