chore(core): remove any typecast
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -369,6 +369,6 @@ export const getMarkerId = (marker: EdgeMarkerType | undefined, vueFlowId?: stri
|
|||||||
|
|
||||||
return `${idPrefix}${Object.keys(marker)
|
return `${idPrefix}${Object.keys(marker)
|
||||||
.sort()
|
.sort()
|
||||||
.map((key: string) => `${key}=${(marker as any)[key]}`)
|
.map((key: string) => `${key}=${marker[<keyof EdgeMarkerType>key]}`)
|
||||||
.join('&')}`
|
.join('&')}`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user