Function Service has 33 lines of code (exceeds 25 allowed). Consider refactoring. OPEN
export function Service<T, K extends keyof T> (
optionsOrServiceName?: ServiceOptions<T, K> | Token<any> | string | any[] | (() => any),
maybeFactory?: (...args: any[]) => any,
): any {
if (arguments.length === 2 || optionsOrServiceName instanceof Function) {
Severity: Minor
Found in: src/decorators/Service.ts - About 1 hr to fix