mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-14 22:30:10 +00:00
Harvey Tindall
301f502052
web UI now uses modules, and relies less on bodge to make things work. Also fixes an issue where invites where "failed to send to xx" appeared in invite form.
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
declare interface ModalConstructor {
|
|
(id: string, find?: boolean): BSModal;
|
|
}
|
|
|
|
declare interface BSModal {
|
|
el: HTMLDivElement;
|
|
modal: any;
|
|
show: () => void;
|
|
hide: () => void;
|
|
}
|
|
|
|
declare interface Window {
|
|
getComputedStyle(element: HTMLElement, pseudoElt: HTMLElement): any;
|
|
bsVersion: number;
|
|
bs5: boolean;
|
|
BS: Bootstrap;
|
|
Modals: BSModals;
|
|
cssFile: string;
|
|
availableProfiles: Array<any>;
|
|
jfUsers: Array<Object>;
|
|
notifications_enabled: boolean;
|
|
token: string;
|
|
buttonWidth: number;
|
|
}
|
|
|
|
declare interface tooltipTrigger {
|
|
(): void;
|
|
}
|
|
|
|
declare interface Bootstrap {
|
|
newModal: ModalConstructor;
|
|
triggerTooltips: tooltipTrigger;
|
|
Compat?(): void;
|
|
}
|
|
|
|
declare interface BSModals {
|
|
login: BSModal;
|
|
userDefaults: BSModal;
|
|
users: BSModal;
|
|
restart: BSModal;
|
|
refresh: BSModal;
|
|
about: BSModal;
|
|
delete: BSModal;
|
|
newUser: BSModal;
|
|
}
|
|
|
|
interface Invite {
|
|
code?: string;
|
|
expiresIn?: string;
|
|
empty: boolean;
|
|
remainingUses?: string;
|
|
email?: string;
|
|
usedBy?: Array<Array<string>>;
|
|
created?: string;
|
|
notifyExpiry?: boolean;
|
|
notifyCreation?: boolean;
|
|
profile?: string;
|
|
}
|
|
|
|
declare var config: Object;
|
|
declare var modifiedConfig: Object;
|