- move(
options: MoveOptions,
): Promise<
| {
error: {
error_description: any;
status_code: number;
status_text: string;
};
value?: undefined;
}
| {
error?: undefined;
value: { status_code: number; status_text: string; summary: string };
},
> Returns Promise<
| {
error: {
error_description: any;
status_code: number;
status_text: string;
};
value?: undefined;
}
| {
error?: undefined;
value: { status_code: number; status_text: string; summary: string };
},
>