import { PluginCommAPI } from 'sn-plugin-lib';
/**
* 删除当前套索元素数据的示例。
*/
export async function exampleDeleteLassoElements() {
const res = await PluginCommAPI.deleteLassoElements();
if (!res.success) {
throw new Error(res.error?.message ?? 'deleteLassoElements 调用失败');
}
return res.result;
}