Interface IDrawable

Represent the class can be drew

interface IDrawable {
    componentName: string;
    isAlive: boolean;
    render(): Element;
}

Implemented by

Properties

Methods

Properties

componentName: string

The readable component name that appears to devtool

isAlive: boolean

Whether the component was dispose

Methods