declare module "windows.management.orchestration" {
  export class OrchestrationContract {
    constructor();
  }

  export class CurrentAppOrchestration {
    constructor();

    static getForCurrentView(): CurrentAppOrchestration;


    startSingleAppMode(): SingleAppModeContext;

  }

  export class SingleAppModeContext {
    constructor();

    close(): void;
  }

}



