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
| Name | Type | Required | Description |
|---|---|---|---|
readFile | () => Promise<Uint8Array> | yes | Read the exact host-selected extraction target as bytes. |
readTextFile | () => Promise<string> | yes | Read the exact host-selected extraction target as text. |