This commit is contained in:
Asaki Yuki 2026-01-04 10:52:31 +07:00
commit e2f472d802
83 changed files with 6338 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import { Type } from "../index.js"
import { Properties } from "../types/properties/components.js"
export function FormatProperties(properties: any) {
if (properties.anchor) {
properties.anchor_from = properties.anchor_to = properties.anchor
delete properties.anchor
}
return properties
}