@symanticreative/vendure-admin-client
Version:
A TypeScript GraphQL client for Vendure Admin API to create custom dashboards
12 lines • 367 B
JavaScript
/**
* Decorator to mark a class as injectable
* This is used for dependency injection
*/
export function Injectable() {
return function (constructor) {
// This is a simple implementation
// In a more complex DI system, this would attach metadata to the class
return constructor;
};
}
//# sourceMappingURL=injectable.decorator.js.map