5 lines
240 B
TypeScript
5 lines
240 B
TypeScript
import type { CommandLinkItemProps } from "../types.js";
|
|
declare const CommandLinkItem: import("svelte").Component<CommandLinkItemProps, {}, "ref">;
|
|
type CommandLinkItem = ReturnType<typeof CommandLinkItem>;
|
|
export default CommandLinkItem;
|