9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
/**
|
|
* SmartProxy models
|
|
*/
|
|
export * from './interfaces.js';
|
|
export * from './route-types.js';
|
|
|
|
// Re-export IRoutedSmartProxyOptions explicitly to avoid ambiguity
|
|
export type { ISmartProxyOptions as IRoutedSmartProxyOptions } from './interfaces.js';
|