ISequencedProposal
Packages > @fluidframework/protocol-definitions > ISequencedProposal
Similar to IProposal except it also includes the sequence number when it was made.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/protocol-definitions/alpha
.
For more information about our API support guarantees, see here .
Signature
export type ISequencedProposal = {
sequenceNumber: number;
} & IProposal;