UNPKG

@brusalk/react-wow-addon

Version:

React-style UI Framework for World of Warcraft AddOns

10 lines (9 loc) 268 B
import { InternalElement } from './element'; export declare class Component<P = {}, S = {}> { props: P; state: S; constructor(props?: P); private __internalInstance; setState(partialState: Partial<S>): void; render(): InternalElement | null; }