forked from atums.world/atums.world
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
};
|
|
|
|
type UserValidation = {
|
|
check: { valid: boolean; error?: string };
|
|
field: string;
|
|
};
|