Phials plugin documentation
User guide
AI Disclosure: This page was generated by an LLM and may contain inaccuracies. Hand-crafted documentation will be implemented over time on the road to 1.0

MetadataAPI

Since Plugin API: 1.0.0

Metadata API - extended API for metadata providers

extends PluginAPI

Signature

interface MetadataAPI extends PluginAPI {
    readFile(): Promise<Uint8Array>;
    readTextFile(): Promise<string>;
}

Members

NameTypeRequiredDescription
readFile() => Promise<Uint8Array>yesRead the exact host-selected extraction target as bytes.
readTextFile() => Promise<string>yesRead the exact host-selected extraction target as text.