You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
346 B
12 lines
346 B
|
4 months ago
|
import { BaseExtension } from '../registry/extension';
|
||
|
|
import type { CustomPluginOption } from '../spec/plugin';
|
||
|
|
export interface BasePluginOptions extends CustomPluginOption {
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* <zh/> 插件的基类
|
||
|
|
*
|
||
|
|
* <en/> Base class for plugins
|
||
|
|
*/
|
||
|
|
export declare abstract class BasePlugin<T extends BasePluginOptions> extends BaseExtension<T> {
|
||
|
|
}
|