API reference / @evolu/common / local-first / MutationMapping
Type Alias: MutationMapping<P, M>
type MutationMapping<P, M> = M extends "insert"
? InsertableProps<P>
: M extends "update"
? UpdateableProps<P>
: UpsertableProps<P>;
Defined in: packages/common/src/local-first/Schema.ts:267
Type Parameters
| Type Parameter |
|---|
P extends Record<string, AnyType> |
M extends MutationKind |