1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-22 03:11:36 +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);
}
}