AngularFrameworkComponent

Angular component defined by its type and (optional) initialisation callback

TypeScript
export type AngularFrameworkComponent<T = unknown> = {
    type: T;
    onSetup?: ({ adaptableApi }: {
        adaptableApi: AdaptableApi;
    }) => Partial<T>;
};
References

AdaptableApi