Update stats.ts

This commit is contained in:
syuilo 2018-10-21 10:35:37 +09:00
parent 17263fb459
commit be2cde106b
1 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
/**
*
*/
const nestedProperty = require('nested-property');
import * as mongo from 'mongodb';
import db from '../db/mongodb';
@ -43,6 +47,9 @@ type ChartDocument<T extends Obj> = {
data: T;
};
/**
*
*/
abstract class Chart<T> {
protected collection: ICollection<ChartDocument<T>>;
protected abstract generateInitialStats(): T;