Source code for steamship.plugin.outputs.raw_block_and_tag_plugin_output

from __future__ import annotations

from typing import List

from steamship.data.file import Block
from steamship.plugin.outputs.plugin_output import PluginOutput


[docs] class RawBlockAndTagPluginOutput(PluginOutput): blocks: List[Block]