import type { Endpoint } from '../api.js';
export interface AsyncActionResponse {
id: string;
statusUrl: string;
}
export type GetAsyncActionResult = Endpoint<{
Method: 'GET';
Path: `/action/:id`;
Params: {
id: string;
};
Success: Record<string, any>;
}>;