docv-ged-archive/lib/4nk/IframeReference.ts
Sadrinho27 aedd3b9f10
Some checks failed
4NK Template Sync / check-and-sync (push) Failing after 0s
first commit
2025-09-29 16:57:49 +02:00

14 lines
312 B
TypeScript

export default class IframeReference {
private static iframe: HTMLIFrameElement | null = null;
private constructor() { }
public static setIframe(iframe: HTMLIFrameElement | null): void {
this.iframe = iframe;
}
public static getIframe(): HTMLIFrameElement | null {
return this.iframe;
}
}