Interface Windows

Interface for window management functionality

interface Windows {
    all(): IterableIterator<[WindowId, __module], any, any>;
    close(id: WindowId): void;
    create(options: WindowOptions): __module;
    dialog(options: WindowOptions): __module;
    get(id: WindowId): undefined | __module;
    remove(id: WindowId): void;
}

Methods