diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-30 03:53:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-30 03:53:26 +0900 |
| commit | 3038434712077cedd92a6cd68d74513f9dbd62bd (patch) | |
| tree | dc9fc2a28dccd73ec3cacdb64004597cfc0f156f /src/server/api/endpoints/chart.ts | |
| parent | Improve API (diff) | |
| download | sharkey-3038434712077cedd92a6cd68d74513f9dbd62bd.tar.gz sharkey-3038434712077cedd92a6cd68d74513f9dbd62bd.tar.bz2 sharkey-3038434712077cedd92a6cd68d74513f9dbd62bd.zip | |
Fix bug
Diffstat (limited to 'src/server/api/endpoints/chart.ts')
| -rw-r--r-- | src/server/api/endpoints/chart.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/chart.ts b/src/server/api/endpoints/chart.ts index 521fc42c98..7da970131e 100644 --- a/src/server/api/endpoints/chart.ts +++ b/src/server/api/endpoints/chart.ts @@ -1,6 +1,6 @@ import $ from 'cafy'; import Stats, { IStats } from '../../../models/stats'; -import getParams from '../../get-params'; +import getParams from '../get-params'; type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; |