TSFastifyExample/interfaces/environment.ts
creations 1ccf80474c Common changes for simplicity
Changed fastify handler to handle the actual registration of the rout file with the routeinfo. changed all ' to " instead moves types and interfaces to the respective folders and files
2024-08-09 07:10:21 -04:00

17 lines
No EOL
274 B
TypeScript

export interface IEnvironment {
development: boolean;
fastify: {
host: string;
port: number;
};
paths: {
src: string;
www: {
root: string;
views: string;
public: string;
}
};
}