Interface WhiteboardData

interface WhiteboardData {
    shapes: Shapes[];
    redoStack: Shapes[];
    undoStack: Shapes[];
    useImageBackground: boolean;
}

Properties

shapes: Shapes[]
redoStack: Shapes[]
undoStack: Shapes[]
useImageBackground: boolean