@solidgrounds/core
Version:
Dependency injection container
10 lines (9 loc) • 304 B
TypeScript
import { FF } from '../../Value';
export interface MyOtherFeatureServices {
myOtherFeature: string;
referenceToMyFeature: string;
}
export interface MyOtherFeatureDependencies {
myFeature: string;
}
export declare const MyOtherFeature: FF<MyOtherFeatureServices, MyOtherFeatureDependencies>;