UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

13 lines (12 loc) 468 B
import { Signal } from "@preact/signals"; export type TabProps = { children?: string; selected?: boolean; selectedSignal?: Signal<Array<string>>; disabled?: boolean; width?: string | number; id?: string; }; export declare const selectTab: (selectedSignal: Signal<Array<string>>, id: string) => void; declare const Tab: ({ children, selected, selectedSignal, disabled, width, id }: TabProps) => import("preact").JSX.Element; export default Tab;