UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

10 lines 262 B
/** * A project can be identified by its projectId or projectName * In the case of a projectName, the name must be url encodable */ export type ProjectSelector = { projectId: string; } | { projectName: string; }; //# sourceMappingURL=projects.d.ts.map