AliasResult
Packages > @fluidframework/runtime-definitions > AliasResult
Encapsulates the return codes of the aliasing API.
‘Success’ - the datastore has been successfully aliased. It can now be used. ‘Conflict’ - there is already a datastore bound to the provided alias. To acquire it’s entry point, use the IContainerRuntime.getAliasedDataStoreEntryPoint
function. The current datastore should be discarded and will be garbage collected. The current datastore cannot be aliased to a different value. ‘AlreadyAliased’ - the datastore has already been previously bound to another alias name.
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/runtime-definitions/legacy
.
For more information about our API support guarantees, see here .
Signature
export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";