Framework
UpdateInput<T>
Type Alias: UpdateInput<T>
type UpdateInput<T> = Partial<Omit<T, "id">>;Update input type - all fields optional except id which is not allowed.
Type Parameters
| Type Parameter |
|---|
T |
Robo.jstype UpdateInput<T> = Partial<Omit<T, "id">>;Update input type - all fields optional except id which is not allowed.
| Type Parameter |
|---|
T |