307 B
307 B
plugins
type Plugin = IndexPlugin | BlobPlugin | DerivePlugin;
/// a plugin for indexing
interface IndexPlugin {
type: "index",
key: string,
}
///
interface BlobPlugin {
type: "blob",
key: string,
endpoint: string,
}
///
interface DerivePlugin {
type: "derive",
key: string,
}