Answer the stability review: guard the argument lookup, and correct the claims the split made false
CI / gate (push) Successful in 5s

This commit is contained in:
2026-08-27 22:50:55 +02:00
parent 559922e327
commit 48dcdeccea
5 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import type { AdfAttributes } from './document.ts'
import type { JsonValue } from '../json-value.ts'
export type AttributeKind = 'boolean' | 'json' | 'number' | 'string'
type AttributeKind = 'boolean' | 'json' | 'number' | 'string'
export type AttributeVocabulary = Readonly<Record<string, AttributeKind>>