| 1 | interface ImportGlobOptions<Eager extends boolean> { |
| 2 | /** |
| 3 | * Import as static or dynamic |
| 4 | * |
| 5 | * @default false |
| 6 | */ |
| 7 | eager?: Eager |
| 8 | /** |
| 9 | * Import only the specific named export. Set to `default` to import the default export. |
| 10 | */ |
| 11 | import?: string |
| 12 | /** |
| 13 | * Custom queries |
| 14 | */ |
| 15 | query?: string | Record<string, string | number | boolean> |
| 16 | /** |
| 17 | * Search files also inside `node_modules/` and hidden directories (e.g. `.git/`). This might have impact on performance. |
| 18 | * |
| 19 | * @default false |
| 20 | */ |
| 21 | exhaustive?: boolean |
| 22 | /** |
| 23 | * Base path to resolve relative paths. |
| 24 | */ |
| 25 | base?: string |
| 26 | } |
| 27 | |
| 28 | type GeneralImportGlobOptions = ImportGlobOptions<boolean> |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…