ExtensionDataRef
Home > @backstage/frontend-plugin-api
> ExtensionDataRef
Signature:
export type ExtensionDataRef<TData, TId extends string = string, TConfig extends {
optional?: true;
} = {}> = {
readonly $$type: '@backstage/ExtensionDataRef';
readonly id: TId;
readonly T: TData;
readonly config: TConfig;
};