6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
interface PluginStats {
|
|
warnings?: boolean;
|
|
errors?: boolean;
|
|
}
|
|
export { PluginStats };
|