any-sync/data/docstate.go
2022-07-03 16:38:48 +02:00

10 lines
225 B
Go

package data
type DocumentState interface {
ApplyChange(change []byte, id string) (DocumentState, error)
}
type InitialStateProvider interface {
ProvideFromInitialChange(change []byte, id string) (DocumentState, error)
}