UNPKG

@tsclean/core

Version:

Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.

13 lines 393 B
import { EnhancerSubtype } from '../../helpers'; export interface AttachedEnhancerDefinition { nodeId: string; } export interface OrphanedEnhancerDefinition { subtype: EnhancerSubtype; ref: unknown; } export interface Extras { orphanedEnhancers: Array<OrphanedEnhancerDefinition>; attachedEnhancers: Array<AttachedEnhancerDefinition>; } //# sourceMappingURL=extras.d.ts.map