@tindtechnologies/universalviewer
Version:
The Universal Viewer is a community-developed open source project on a mission to help you share your 📚📜📰📽️📻🗿 with the 🌎
19 lines (18 loc) • 554 B
TypeScript
import { Dialogue } from "../uv-shared-module/Dialogue";
import { Service } from "manifesto.js";
import { BaseConfig } from "../../BaseConfig";
export declare class AuthDialogue extends Dialogue<BaseConfig["modules"]["authDialogue"]> {
closeCallback: any;
confirmCallback: any;
cancelCallback: any;
$cancelButton: JQuery;
$confirmButton: JQuery;
$message: JQuery;
$title: JQuery;
service: Service;
constructor($element: JQuery);
create(): void;
open(): void;
resize(): void;
_buttonsToAdd(): string;
}