Skip to main content

@microsoft/fast-foundation > Injectable

Injectable type

A class that declares constructor injected dependencies through a static "inject" field array of keys.

Signature:
export declare type Injectable<T = {}> = Constructable<T> & {
inject?: Key[];
};