UNPKG

@nodert-win11/windows.management.update

Version:

Use the Windows.Management.Update UWP API directly from Node.js

28 lines (14 loc) 467 B
declare module "windows.management.update" { export class PreviewBuildsManager { arePreviewBuildsAllowed: Boolean; constructor(); static getDefault(): PreviewBuildsManager; static isSupported(): Boolean; syncAsync(callback: (error: Error, result: Boolean) => void): void ; getCurrentState(): PreviewBuildsState; } export class PreviewBuildsState { properties: Object; constructor(); } }