diff --git a/typescript/model.ts b/typescript/model.ts index e8bdb6769..fd18ea88f 100644 --- a/typescript/model.ts +++ b/typescript/model.ts @@ -17,7 +17,7 @@ const metaAddressTypes = [ "Code_aarch64", "Code_systemz", ] as const; -type MetaAddressType = typeof metaAddressTypes[number]; +type MetaAddressType = (typeof metaAddressTypes)[number]; const metaAddressRegex = new RegExp( "^(?
(0x[0-9a-fA-F]+)|)" +