UNPKG

weaviate-client

Version:
16 lines (15 loc) 309 B
export type Alias = { collection: string; alias: string; }; export type CreateAliasArgs = { collection: string; alias: string; }; export type UpdateAliasArgs = { newTargetCollection: string; alias: string; }; export type AliasListAllOptions = { collection?: string | undefined; };