hotelier-lib
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
24 lines (23 loc) • 618 B
TypeScript
import { z } from "zod";
import { ColumnDef } from "@tanstack/react-table";
export declare const userLogSchema: z.ZodObject<{
name: z.ZodString;
type: z.ZodString;
details: z.ZodString;
createdAt: z.ZodString;
id: z.ZodString;
}, "strip", z.ZodTypeAny, {
name?: string;
type?: string;
details?: string;
createdAt?: string;
id?: string;
}, {
name?: string;
type?: string;
details?: string;
createdAt?: string;
id?: string;
}>;
export type IUserLogs = z.infer<typeof userLogSchema>;
export declare const columns: ColumnDef<IUserLogs>[];