mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:03:08 +02:00
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 abstract async getTemplate(init: boolean, latest?: T, group?: any): Promise<T>;
|
||||
private name: string;
|
||||
|
|
Loading…
Reference in a new issue