backend/types/config.d.ts
creations b31d77983c
All checks were successful
Code quality checks / biome (push) Successful in 9s
add session fix cors, add session
2025-05-22 17:52:20 -04:00

25 lines
383 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
fqdn: string;
frontendUrl: string;
};
type UserValidation = {
check: { valid: boolean; error?: string };
field: string;
};
type Setting = {
key: string;
value: string;
};
type Module = {
file: string;
module: {
order?: number;
createTable?: (reservation?: ReservedSQL) => Promise<void>;
};
};