| 15 | } |
| 16 | |
| 17 | export interface IsolateableSource { |
| 18 | isolateSource(source: Partial<IsolateableSource>, scope: string): Partial<IsolateableSource>; |
| 19 | isolateSink<T>(sink: T, scope: string): T; |
| 20 | } |
| 21 | |
| 22 | export interface Sources { |
| 23 | [name: string]: Partial<IsolateableSource>; |
no outgoing calls
no test coverage detected