@feast-dev/feast-ui
Version:
Web UI for the [Feast Feature Store](https://feast.dev/)
22 lines • 654 B
TypeScript
import { z } from "zod";
declare const demoSchema: z.ZodObject<{
hello: z.ZodString;
name: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
hello: string;
name?: string | undefined;
}, {
hello: string;
name?: string | undefined;
}>;
type DemoDataType = z.infer<typeof demoSchema>;
interface DemoQueryInterface {
featureView: string | undefined;
}
declare const useDemoQuery: ({ featureView }: DemoQueryInterface) => import("react-query").UseQueryResult<{
hello: string;
name?: string | undefined;
}, unknown>;
export default useDemoQuery;
export type { DemoDataType };
//# sourceMappingURL=useDemoQuery.d.ts.map