initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
export interface ProgressInfo {
|
||||
title: string;
|
||||
value: number;
|
||||
activeProgress: number;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export abstract class StatsProgressBarData {
|
||||
abstract getProgressInfoData(): Observable<ProgressInfo[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user