From 346d4403df854a03e0cce15d26519a8700014615 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sun, 14 Jul 2024 22:10:04 -0400 Subject: [PATCH] Misc --- src/property.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/property.ts b/src/property.ts index e3a3136..832d962 100644 --- a/src/property.ts +++ b/src/property.ts @@ -1,4 +1,4 @@ -import { formatType } from './common'; +import { INTERNAL, formatType } from './common'; export class Property { readonly offset: number; @@ -16,7 +16,7 @@ export class Property { // Getters type() { - return `__type_${this.fullName()}`; + return `${INTERNAL}type_${this.fullName()}`; } typedef() { let arrayInfo = '';