@sjsf/shadcn4-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
9 lines (8 loc) • 363 B
TypeScript
import { Command as CommandPrimitive } from "bits-ui";
export type CommandRootApi = CommandPrimitive.Root;
type $$ComponentProps = CommandPrimitive.RootProps & {
api?: CommandRootApi | null;
};
declare const Command: import("svelte").Component<$$ComponentProps, {}, "ref" | "value" | "api">;
type Command = ReturnType<typeof Command>;
export default Command;