| 230 | * @template M - The mapping type for the datasource (default: SubstrateMapping<SubstrateRuntimeHandler>). |
| 231 | */ |
| 232 | export interface SubstrateRuntimeDatasource< |
| 233 | M extends SubstrateMapping<SubstrateRuntimeHandler> = SubstrateMapping<SubstrateRuntimeHandler>, |
| 234 | > extends BaseDataSource<SubstrateHandler, M> { |
| 235 | /** |
| 236 | * The kind of the datasource, which is `substrate/Runtime`. |
| 237 | * @type {SubstrateDatasourceKind.Runtime} |
| 238 | */ |
| 239 | kind: SubstrateDatasourceKind.Runtime; |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * Represents a Substrate datasource, which can be either runtime or custom. |
nothing calls this directly
no outgoing calls
no test coverage detected