File size: 507 Bytes
9d2d895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /**
* Re-exports scenario template types for use within src/.
* The authoritative source is server/worldmonitor/supply-chain/v1/scenario-templates.ts
* (kept there so API edge functions can import it without crossing the src/ boundary).
*/
export type {
ScenarioType,
ScenarioTemplate,
ScenarioVisualState,
ScenarioResult,
} from '../../server/worldmonitor/supply-chain/v1/scenario-templates';
export { SCENARIO_TEMPLATES } from '../../server/worldmonitor/supply-chain/v1/scenario-templates';
|