Interface BaseComponentOptions<T>

interface BaseComponentOptions<T> {
    component: string;
    id: string;
    params?: T;
    priority?: Low | High | Normal;
    size?: number;
    snap?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

component: string
id: string
params?: T
priority?: Low | High | Normal
size?: number
snap?: boolean

Generated using TypeDoc