@schemastore/contextive-glossary 1.0.0 → 1.0.2
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.
- package/README.md +1 -1
- package/index.d.ts +1 -5
- package/package.json +2 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -46,10 +46,6 @@ export type Path = string;
|
|
|
46
46
|
* @minItems 1
|
|
47
47
|
*/
|
|
48
48
|
export type Terms = [Term, ...Term[]];
|
|
49
|
-
/**
|
|
50
|
-
* The name of the Term.
|
|
51
|
-
*/
|
|
52
|
-
export type Name1 = string;
|
|
53
49
|
/**
|
|
54
50
|
* A definition of the Term in this Context.
|
|
55
51
|
*/
|
|
@@ -89,7 +85,7 @@ export interface Context {
|
|
|
89
85
|
* A Term in the Context.
|
|
90
86
|
*/
|
|
91
87
|
export interface Term {
|
|
92
|
-
name:
|
|
88
|
+
name: Name;
|
|
93
89
|
definition?: Definition;
|
|
94
90
|
examples?: Examples;
|
|
95
91
|
aliases?: Aliases;
|