Skip to content

Commit cd068e7

Browse files
committed
chore(model): linting
1 parent affafc2 commit cd068e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mixins/Model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ export function Model(model: typeof BaseModel, config: GlobalConfig): void {
2222
/**
2323
* Set the given api client.
2424
*/
25-
model.setAxios = function(axios: AxiosInstance): void {
25+
model.setAxios = function (axios: AxiosInstance): void {
2626
this.axios = axios
2727
}
2828

2929
/**
3030
* Get the api instance.
3131
*/
32-
model.api = function(): Request {
32+
model.api = function (): Request {
3333
return new Request(this)
3434
}
3535
}

0 commit comments

Comments
 (0)