1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-12 14:15:47 +07:00

fix: typescript warnings - prefer-rest-params

This commit is contained in:
Griffithtp
2019-06-24 21:49:22 +01:00
parent 91e603ef21
commit e33570b3f0

View File

@@ -39,8 +39,7 @@ const register = (url, method = 'get', options = {}) => {
* Bind API methods
*/
class API {
public request() {
const rest = arguments;
public request(...rest) {
return register.call(null, ...rest);
}
}