@steambrew/client
Version:
A support library for creating plugins with Millennium.
10 lines (9 loc) • 363 B
TypeScript
import { Unregisterable } from '../shared';
export interface DisplayManager {
ClearModeOverride(displayId: any): any;
GetState: any;
RegisterForStateChanges(callback: () => void): Unregisterable;
SetCompatibilityMode(displayId: any): any;
SetGamescopeInternalResolution(width: number, height: number): any;
SetMode(base64: string): any;
}