Skip to main content

RevertibleAlpha Interface

A Revertible with features that are not yet stable.

This API is provided as an alpha preview and may change without notice.

To use, import via fluid-framework/alpha.

For more information about our API support guarantees, see here.

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature

/** @sealed */
export interface RevertibleAlpha extends Revertible

Extends: Revertible

Properties

Property Alerts Type Description
clone Alpha (branch: TreeBranch) => RevertibleAlpha Clones the Revertible to a target branch.

Property Details

clone

Clones the Revertible to a target branch.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature
clone: (branch: TreeBranch) => RevertibleAlpha;

Type: (branch: TreeBranch) => RevertibleAlpha