Interface InlineDefaultProps

the default inline props assignable to all components (any renderer that inherits from VanillaComponentRender will support these).
see DefaultProps for the details of each property:

interface InlineDefaultProps {
    style?: Partial<PreserveStringKeyAndValues<CSSStyleDeclaration> & CSSVarProps>;
    init?: ExecuteProp<Element>;
    clean?: ExecuteProp<Element>;
    [attribute_name: `attr:${string}`]: AttrProps[keyof AttrProps];
}

Indexable

[attribute_name: `attr:${string}`]: AttrProps[keyof AttrProps]

Properties

Properties

style?: Partial<PreserveStringKeyAndValues<CSSStyleDeclaration> & CSSVarProps>
init?: ExecuteProp<Element>
clean?: ExecuteProp<Element>

Generated using TypeDoc