tianji/src/types/index.ts

18 lines
387 B
TypeScript
Raw Normal View History

export * as schemas from '../../prisma/zod/index';
2023-10-03 20:45:00 +08:00
export * from './server';
2023-10-10 00:09:39 +08:00
export * from './monitor';
2023-10-05 21:09:03 +08:00
export * from './utils';
declare global {
namespace PrismaJson {
type CommonPayload = Record<string, any>;
type DashboardLayout = {
layouts: Record<string, any[]>;
items: any[];
} | null;
2023-12-13 18:21:04 +08:00
type MonitorStatusPageList = {
id: string;
}[];
}
}