/** * All parts of a complete entity ref, forming a full kind-namespace-name * triplet. * * @public */ export type CompoundEntityRef = { kind: string; namespace: string; name: string; };