angular-simple-oidc
Version:
Angular Library implementing Open Id Connect specification. Code Flow, Refresh Tokens, Session Management, Discovery Document.
12 lines (11 loc) • 345 B
TypeScript
export declare class DynamicIframe {
protected readonly document: Document;
readonly handle: HTMLIFrameElement;
constructor(document: Document);
appendTo(e: HTMLElement): this;
appendToBody(): this;
setSource(url: string): this;
hide(): this;
postMessage(msg: string, origin: string): this;
remove(): this;
}