| 10 | | (() => Record<string, any>) |
| 11 | |
| 12 | interface DefaultExport<T> { |
| 13 | /** |
| 14 | * Default exports are bound under the name `"default"`, per the ES Module spec: |
| 15 | * https://tc39.es/ecma262/#table-export-forms-mapping-to-exportentry-records |
| 16 | */ |
| 17 | default: T |
| 18 | } |
| 19 | |
| 20 | export interface TanStackDevtoolsAngularPluginInputProps extends TanStackDevtoolsPluginProps { |
| 21 | [key: string]: any |
nothing calls this directly
no outgoing calls
no test coverage detected