mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
15 lines
621 B
TypeScript
15 lines
621 B
TypeScript
/**
|
|
* OmniRoute Core Types
|
|
*
|
|
* Central re-export for all domain types.
|
|
* Import from "@/types" in any file.
|
|
*/
|
|
|
|
export type { ProviderConnection, ProviderNode, ModelCooldownErrorPayload } from "./provider";
|
|
export type { ApiKey } from "./apiKey";
|
|
export type { Combo, ComboStrategy, ComboNode } from "./combo";
|
|
export type { UsageEntry, UsageStats, ProviderUsageStats, ModelUsageStats, CallLog } from "./usage";
|
|
export type { Settings, ComboDefaults, ProxyConfig, KVPair } from "./settings";
|
|
export type { DatabaseSettings } from "./databaseSettings";
|
|
export { DEFAULT_DATABASE_SETTINGS } from "./databaseSettings";
|