AI Notice: Most documentation right now was auto-generated by an LLM. Handwritten documentation will be implemented over time on the road to 1.0
HeaderBarPlacementConfig
Header bar placement configuration.
extends CommandPlacementBase
Signature
interface HeaderBarPlacementConfig extends CommandPlacementBase {
area: "headerBar";
icon?: string | ((ctx: CommandContext) => string);
priority?: number;
active?: (ctx: CommandContext) => boolean;
section?: "left" | "center" | "right";
}Members
| Name | Type | Required | Description |
|---|---|---|---|
area | "headerBar" | yes | — |
icon | string | (ctx: CommandContext) => string | no | Icon override for header display |
priority | number | no | Order priority |
active | (ctx: CommandContext) => boolean | no | Toggle/active state indicator |
section | "left" | "center" | "right" | no | Position in header |