@kanonak-protocol/types 5.29.0 → 5.30.0
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.
|
@@ -73,6 +73,16 @@ export interface Import {
|
|
|
73
73
|
* Optional namespace alias for the import (e.g., "cls")
|
|
74
74
|
*/
|
|
75
75
|
alias?: string | null | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* What the import IS (typescript#111). `dependency` (the default): the
|
|
78
|
+
* package is part of this document's closure — its classes and properties
|
|
79
|
+
* give this document meaning, it is fetched with the document, and a cycle
|
|
80
|
+
* among dependencies is an error. `link`: the package is only DEREFERENCED —
|
|
81
|
+
* this document names resources in it (data references) but is complete
|
|
82
|
+
* without loading it; links are not in the closure, are exempt from the
|
|
83
|
+
* cycle rule, and resolve version-agnostically unless pinned with `=`.
|
|
84
|
+
*/
|
|
85
|
+
mode?: 'dependency' | 'link';
|
|
76
86
|
/**
|
|
77
87
|
* Gets the minimum version allowed by this import specification
|
|
78
88
|
*/
|