@thisisagile/easy-service
Version:
Straightforward library for building domain-driven microservice architectures
9 lines (8 loc) • 334 B
TypeScript
import { Scope, UseCase } from '@thisisagile/easy';
export declare class Requires {
readonly labCoat: () => PropertyDecorator;
readonly token: () => PropertyDecorator;
readonly scope: (scope: Scope) => PropertyDecorator;
readonly useCase: (uc: UseCase) => PropertyDecorator;
}
export declare const requires: Requires;