@feast-dev/feast-ui
Version:
Web UI for the [Feast Feature Store](https://feast.dev/)
13 lines • 353 B
TypeScript
import React from "react";
interface CommandPaletteProps {
isOpen: boolean;
onClose: () => void;
categories: {
name: string;
data: any[];
getLink: (item: any) => string;
}[];
}
declare const CommandPalette: React.FC<CommandPaletteProps>;
export default CommandPalette;
//# sourceMappingURL=CommandPalette.d.ts.map