import type { CanvasSize } from "./CanvasSize.js"; export type WegPluginItem = { scopes: Array; render: string; /** * Size of the canvas to draw on. Size changes based on dock orientation (horizontal or vertical). */ canvasSize: CanvasSize; /** * If true, `render` is expected to return a custom icon key (string) instead of * drawing on the canvas. The item will be displayed using that custom icon. */ noCanvas: boolean; /** * JS function definition for content to display in tooltip of the item. */ tooltip: string | null; /** * JS function definition for content to display in badge of the item. */ badge: string | null; /** * JS function definition that will be executed when the item is clicked. */ onClick: string | null; }; //# sourceMappingURL=WegPluginItem.d.ts.map