16 lines
322 B
TypeScript
16 lines
322 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* FastAPI
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { StrategyDetail } from './strategyDetail';
|
|
|
|
export interface PlatformStrategy {
|
|
platform: string;
|
|
icon: string;
|
|
currentMetric: string;
|
|
targetMetric: string;
|
|
strategies: StrategyDetail[];
|
|
}
|