Add .vl2 export

This commit is contained in:
Brian Beck 2022-12-04 11:00:39 -08:00
parent e0e2b3d276
commit 941f908cb5
31 changed files with 378 additions and 81 deletions

View file

@ -17,6 +17,13 @@ interface ToolsContextValue {
bringForward: () => void;
lockSelection: () => void;
unlockSelection: () => void;
exportSkin: ({
name,
format,
}: {
name: string;
format: string;
}) => Promise<void>;
lockedObjects: Set<fabric.Object>;
backgroundColor: string;
setBackgroundColor: (backgroundColor: string) => void;