| 28 | export type Status = 'unset' | 'loading' | 'ready' | 'error'; |
| 29 | |
| 30 | interface LoadResult { |
| 31 | ref: Element; |
| 32 | status: Status; |
| 33 | } |
| 34 | |
| 35 | type LoadExternal = <T>(path: string, props?: Partial<T>) => LoadResult; |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…