@thi.ng/imgui
Version:
Immediate mode GUI with flexible state handling & data only shape output
11 lines • 415 B
TypeScript
import type { Maybe } from "@thi.ng/api";
import { type ComponentOpts } from "../api.js";
export interface RadialMenuOpts extends Omit<ComponentOpts, "layout" | "label" | "info"> {
x: number;
y: number;
r: number;
items: string[];
info?: string[];
}
export declare const radialMenu: ({ gui, id, x, y, r, items, info, }: RadialMenuOpts) => Maybe<number>;
//# sourceMappingURL=radial-menu.d.ts.map