Interface IWidgetParameters

interface IWidgetParameters {
    canBeAddedOrDeletedBy: IWidgetScope;
    options: {
        canBeHidden: boolean;
        title: string;
        [key: string]: any;
    };
    position: IWidgetPosition;
    users?: string[];
}

Properties

canBeAddedOrDeletedBy: IWidgetScope
options: {
    canBeHidden: boolean;
    title: string;
    [key: string]: any;
}

Type declaration

  • [key: string]: any
  • canBeHidden: boolean
  • title: string
position: IWidgetPosition
users?: string[]

Generated using TypeDoc