Interface DeputyUIElement

interface DeputyUIElement {
    prepare?: (() => PromiseOrNot<boolean | void>);
    render(): HTMLElement;
}

Implemented by

Properties

Methods

Properties

prepare?: (() => PromiseOrNot<boolean | void>)

Prepare for element injection. This entails changing a few things, such as hiding MediaWiki-rendered components, etc.

Methods