Interface IInjectable

Apply to the class that needs a callback when dependency was injected

interface IInjectable {
    loadCompleted?(): void;
}

Methods