nostr-web-components
Version:
collection of web components that provide quick access to basic nostr things
12 lines (11 loc) • 377 B
TypeScript
export default class NostrFollow extends HTMLElement {
static observedAttributes: string[];
button: HTMLButtonElement;
slotDefault: HTMLSlotElement;
slotLoading: HTMLSlotElement;
slotSuccess: HTMLSlotElement;
slotFailure: HTMLSlotElement;
constructor();
queryPart<H = HTMLElement>(name: string): Iterable<H>;
handleClick(): Promise<void>;
}