Type Alias: ObjectArg
type ObjectArg =
| {
ImmOrOwnedObject: [string, string, string];
}
| {
SharedObject: {
id: string;
initial_shared_version: string;
mutable: boolean;
};
}
| {
Receiving: [string, string, string];
};
type ObjectArg =
| {
ImmOrOwnedObject: [string, string, string];
}
| {
SharedObject: {
id: string;
initial_shared_version: string;
mutable: boolean;
};
}
| {
Receiving: [string, string, string];
};