TypesToApiRefs
Home > @backstage/core-plugin-api
> TypesToApiRefs
Wraps a type with API properties into a type holding their respective ApiRefs.
Signature:
export type TypesToApiRefs<T> = {
[key in keyof T]: ApiRef<T[key]>;
};
References: ApiRef