@t1mmen/srtd
Version:
Supabase Repeatable Template Definitions (srtd): 🪄 Live-reloading SQL templates for Supabase DX. Make your database changes reviewable and migrations maintainable! 🚀
18 lines (17 loc) • 451 B
TypeScript
import React from 'react';
import zod from 'zod';
export declare const options: zod.ZodObject<{
force: zod.ZodBoolean;
apply: zod.ZodOptional<zod.ZodBoolean>;
}, "strip", zod.ZodTypeAny, {
force: boolean;
apply?: boolean | undefined;
}, {
force: boolean;
apply?: boolean | undefined;
}>;
type Props = {
options: zod.infer<typeof options>;
};
export default function Build({ options }: Props): React.JSX.Element;
export {};