mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Adding ability to copy to clipboard as SVG (#1250)
This commit is contained in:
parent
2de4fe29ad
commit
d5366db341
5 changed files with 55 additions and 7 deletions
|
@ -22,7 +22,12 @@ export interface Scene {
|
|||
elements: ExcalidrawTextElement[];
|
||||
}
|
||||
|
||||
export type ExportType = "png" | "clipboard" | "backend" | "svg";
|
||||
export type ExportType =
|
||||
| "png"
|
||||
| "clipboard"
|
||||
| "clipboard-svg"
|
||||
| "backend"
|
||||
| "svg";
|
||||
|
||||
export type ScrollBars = {
|
||||
horizontal: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue