modality-kit 0.1.14 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -52,16 +52,16 @@ export declare const rangeSchema: z.ZodObject<{
|
|
|
52
52
|
export type Position = z.infer<typeof positionSchema>;
|
|
53
53
|
export type Range = z.infer<typeof rangeSchema>;
|
|
54
54
|
interface SymbolBase {
|
|
55
|
-
name
|
|
56
|
-
kind
|
|
57
|
-
detail?: string;
|
|
55
|
+
name?: string;
|
|
56
|
+
kind?: string;
|
|
58
57
|
id?: string;
|
|
59
58
|
uri?: string;
|
|
59
|
+
detail?: string;
|
|
60
60
|
content?: string;
|
|
61
61
|
}
|
|
62
62
|
export interface Symbol extends SymbolBase {
|
|
63
63
|
range: Range;
|
|
64
|
-
children
|
|
64
|
+
children?: Range[];
|
|
65
65
|
selectionRange?: Range;
|
|
66
66
|
originSelectionRange?: Range;
|
|
67
67
|
}
|
|
@@ -75,7 +75,7 @@ export interface VSCodeRange {
|
|
|
75
75
|
}
|
|
76
76
|
export interface VSCodeSymbol extends SymbolBase {
|
|
77
77
|
range: VSCodeRange;
|
|
78
|
-
children
|
|
78
|
+
children?: VSCodeRange[];
|
|
79
79
|
selectionRange?: VSCodeRange;
|
|
80
80
|
originSelectionRange?: VSCodeRange;
|
|
81
81
|
}
|
package/package.json
CHANGED