6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
|
interface ConstructedStats {
|
||
|
warnings: boolean;
|
||
|
errors: boolean;
|
||
|
}
|
||
|
export { ConstructedStats };
|