6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import { Benchmark } from '@ghostfolio/common/interfaces';
|
|
|
|
export interface BenchmarkResponse {
|
|
benchmarks: Benchmark[];
|
|
}
|