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';
|
2023-11-30 00:43:55 +08:00
|
|
|
export * as schemas from '../../prisma/zod/index';
|
|
|
|
|
|
|
|
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;
|
|
|
|
}[];
|
2023-11-30 00:43:55 +08:00
|
|
|
}
|
|
|
|
}
|