feat: base html sheet

This commit is contained in:
Matthieu CAILLEAUX
2022-04-26 21:11:35 +02:00
parent 986d50a5eb
commit b16967c351
16 changed files with 309 additions and 45 deletions

9
src/abstract-builder.ts Normal file
View File

@@ -0,0 +1,9 @@
import { AbstractElement } from './elements/abstract-element';
export abstract class AbstractBuilder {
public abstract build(elements: AbstractElement[]);
public abstract getLabelledRowHeight(): number;
public abstract save(name: string);
}