2024-12-03 01:37:02 +08:00
|
|
|
import { Configuration, PathDescription } from "interface/serializableType";
|
2024-11-30 22:24:35 +08:00
|
|
|
|
|
|
|
export interface PluginConfig {
|
|
|
|
name: string;
|
|
|
|
version: string;
|
|
|
|
displayName: string;
|
|
|
|
description?: string;
|
|
|
|
author?: string;
|
|
|
|
enabled: boolean;
|
|
|
|
icon?: string;
|
|
|
|
managePath?: string;
|
|
|
|
configuration?: Configuration;
|
|
|
|
routes: Set<PathDescription>;
|
|
|
|
}
|