| 149 | } |
| 150 | |
| 151 | export class RuntimeDataSourceBase extends BaseDataSource implements SubstrateRuntimeDatasource { |
| 152 | @IsEnum(SubstrateDatasourceKind, {groups: [SubstrateDatasourceKind.Runtime]}) |
| 153 | kind!: SubstrateDatasourceKind.Runtime; |
| 154 | @Type(() => RuntimeMapping) |
| 155 | @ValidateNested() |
| 156 | mapping!: RuntimeMapping; |
| 157 | } |
| 158 | |
| 159 | export class FileReferenceImpl implements FileReference { |
| 160 | @IsString() |
nothing calls this directly
no outgoing calls
no test coverage detected