Archived
Private
Public Access
1
0

Finished WindowAPI for the frontend

This commit is contained in:
2022-10-24 22:57:17 +02:00
parent 0fd41608b9
commit e27992ffdb
246 changed files with 1067505 additions and 39 deletions

22
WindowAPI/dist/WindowAPI.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
import { Getters } from "./helper/functions/Getter.js";
import { Setters } from "./helper/functions/Setter.js";
import { WindowEventEmitter } from "./helper/functions/WindowEventEmitter.js";
import { Actions } from "./helper/functions/Actions.js";
export declare class WindowAPI {
private currentEventListener;
constructor();
private sendRequest;
private getMethod;
private setMethod;
get: Getters;
set: Setters;
action: Actions;
event: WindowEventEmitter;
private openWindow;
private closeWindow;
private sendDataToWindow;
private close;
private focus;
private notification;
private openPopup;
}