feat: add detectConfig

This commit is contained in:
xion 2025-03-23 04:01:55 +08:00
parent f993b2466e
commit 93cd7cf979

View File

@ -70,6 +70,17 @@ export class QueryConfig {
data,
});
}
/**
*
* @param id
* @returns
*/
async detectConfig() {
return this.post<{ updateList: Config[] }>({
key: 'detect',
});
}
}
/**