import { Plugin } from '../types';
/**
 * UserPlugin 接口定义
 */
export interface UserPlugin extends Plugin {
    get(): Record<string, any>;
}
