adwaveui
Version:
Interactive Web Components inspired by the Gtk Adwaita theme.
22 lines (21 loc) • 945 B
TypeScript
export declare class AdwSelectorChangeEvent extends Event {
readonly type: "change";
readonly value: string | null;
constructor(eventType: string, value: string | null);
}
export declare class OptionContentChangeEvent extends Event {
static readonly EVNAME = "optioncontentchanged";
readonly type: typeof OptionContentChangeEvent.EVNAME;
readonly optionValue: string | null;
readonly content: string | null;
constructor(eventType: string, value: string | null, content: string | null);
}
type SelectorAttributes = "value" | "inert" | "selected";
export declare class OptionAttributeChangeEvent extends Event {
static readonly EVNAME = "optionattributechanged";
readonly type: typeof OptionAttributeChangeEvent.EVNAME;
readonly attributeName: SelectorAttributes;
readonly attributeValue: any;
constructor(eventType: string, attributeName: SelectorAttributes, attributeValue: any);
}
export {};