8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
import type { ResourceDetector } from './types';
|
|
/**
|
|
* ResourceDetectionConfig provides an interface for configuring resource auto-detection.
|
|
*/
|
|
export interface ResourceDetectionConfig {
|
|
detectors?: Array<ResourceDetector>;
|
|
}
|
|
//# sourceMappingURL=config.d.ts.map
|