forked from FoundKeyGang/FoundKey
Refactor: Better type definition
This commit is contained in:
parent
5410efe9ca
commit
00b2d89f1a
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ type Log<T extends Obj> = {
|
||||||
/**
|
/**
|
||||||
* 様々なチャートの管理を司るクラス
|
* 様々なチャートの管理を司るクラス
|
||||||
*/
|
*/
|
||||||
export default abstract class Chart<T> {
|
export default abstract class Chart<T extends Obj> {
|
||||||
protected collection: ICollection<Log<T>>;
|
protected collection: ICollection<Log<T>>;
|
||||||
protected abstract async getTemplate(init: boolean, latest?: T, group?: any): Promise<T>;
|
protected abstract async getTemplate(init: boolean, latest?: T, group?: any): Promise<T>;
|
||||||
private name: string;
|
private name: string;
|
||||||
|
|
Loading…
Reference in a new issue