import { Context } from 'koishi'; import { StorageDriver } from '../types'; import { LocalStorageDriver } from './local'; /** * 存储驱动工厂 */ export declare class StorageDriverFactory { /** * 创建存储驱动实例 */ static create(ctx: Context, type: string, config: any): StorageDriver; /** * 获取支持的驱动类型列表 */ static getSupportedTypes(): string[]; } export { LocalStorageDriver };