import type InjectDirectiveDescriptor from "./inject-directive-descriptor"; import type { DirectiveEntry } from "."; type InjectionContext = { descriptor: InjectDirectiveDescriptor, customDirectives: Map, host: Node, parentNode: Node, scope: object, template: HTMLTemplateElement, }; export default InjectionContext;