@tdi2/di-core
Version:
TypeScript Dependency Injection 2 - Core DI framework
10 lines (9 loc) • 454 B
TypeScript
import type { Inject, InjectOptional } from "@tdi2/di-core/markers";
import { ApiInterface, NonExistentInterface, AnotherNonExistentInterface } from './shared-types';
export declare function MissingDependencies(props: {
services: {
existing: Inject<ApiInterface>;
missingRequired: Inject<NonExistentInterface>;
missingOptional?: InjectOptional<AnotherNonExistentInterface>;
};
}): import("react/jsx-runtime").JSX.Element;