fix: typings

This commit is contained in:
Braks
2021-10-22 14:29:27 +02:00
parent cb96b1ab00
commit 6ec8258f33
50 changed files with 165 additions and 142 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export type ElementId = string
export type FlowElement<T = any> = Node<T> | Edge<T>
export type Elements<T = any> = Array<FlowElement<T>>
export type Elements<T = any> = FlowElement<T>[]
export type Transform = [number, number, number]