修代码补全

This commit is contained in:
2026-08-01 15:47:51 +02:00
parent 429ea367f3
commit 45fa2b9a27
18 changed files with 802 additions and 37 deletions
File diff suppressed because one or more lines are too long
+3
View File
@@ -20,6 +20,8 @@ export interface AttributeInfo {
/** True for reference-typed attributes whose simple type has no refType. */
isRef: boolean;
enumValues: string[];
/** True for xs:list types (whitespace-separated bit flags / lists). */
isList: boolean;
allowsDefine: boolean;
isBoolean: boolean;
base: string | null;
@@ -39,6 +41,7 @@ export interface SimpleTypeInfo {
refType: string | null;
isRef: boolean;
enumValues: string[];
isList: boolean;
allowsDefine: boolean;
doc: string;
}