@feast-dev/feast-ui
Version:
Web UI for the [Feast Feature Store](https://feast.dev/)
14 lines • 476 B
TypeScript
import { FEAST_FCO_TYPES } from "./types";
import { feast } from "../protos";
interface EntityReference {
type: FEAST_FCO_TYPES;
name: string;
}
interface EntityRelation {
source: EntityReference;
target: EntityReference;
}
declare const parseEntityRelationships: (objects: feast.core.Registry) => EntityRelation[];
export default parseEntityRelationships;
export type { EntityRelation, EntityReference };
//# sourceMappingURL=parseEntityRelationships.d.ts.map