Files
outline/server/models/decorators/Deprecated.ts
T
Hemachandar 04c3d81b1f chore: Setup missing oxlint configs (#9862)
* shared

* server

* app

* remove vestigial eslintrc files

* update comment directives
2025-08-06 19:54:22 -04:00

12 lines
352 B
TypeScript

const Deprecated =
(message?: string) => (_target: object, propertyKey: string) => {
if (process.env[propertyKey]) {
// oxlint-disable-next-line no-console
console.warn(
`The environment variable ${propertyKey} is deprecated and will be removed in a future release. ${message}`
);
}
};
export default Deprecated;