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