TSFastifyExample/interfaces/environment.ts

17 lines
274 B
TypeScript
Raw Normal View History

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