koishi-plugin-x-video
Version:
A Koishi plugin for parsing videos from multiple platforms using RapidAPI.
16 lines (15 loc) • 470 B
TypeScript
import { Context, Schema } from 'koishi';
export declare const name = "x-video";
export declare const usage: string;
export interface Config {
host: string;
key: string;
}
export declare const Config: Schema<Schemastery.ObjectS<{
host: Schema<string, string>;
key: Schema<string, string>;
}>, Schemastery.ObjectT<{
host: Schema<string, string>;
key: Schema<string, string>;
}>>;
export declare function apply(ctx: Context, config: Config): void;