New renders+css

This commit is contained in:
Janus C. H. Knudsen 2025-12-06 01:22:04 +01:00
parent 73e284660f
commit b3f47e93e8
22 changed files with 763 additions and 3 deletions

View file

@ -0,0 +1,6 @@
import { RenderContext } from './RenderContext';
export interface IGroupingRenderer {
readonly type: string;
render(context: RenderContext): void;
}