@typespec/compiler 0.44.0-dev.25 → 0.44.0-dev.26
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/dist/core/types.d.ts +2 -2
- package/dist/manifest.js +1 -1
- package/package.json +1 -1
package/dist/core/types.d.ts
CHANGED
|
@@ -277,13 +277,13 @@ export interface Namespace extends BaseType, DecoratedType {
|
|
|
277
277
|
*/
|
|
278
278
|
operations: Map<string, Operation>;
|
|
279
279
|
/**
|
|
280
|
-
* The
|
|
280
|
+
* The sub-namespaces in the namespace.
|
|
281
281
|
*
|
|
282
282
|
* Order is implementation-defined and may change.
|
|
283
283
|
*/
|
|
284
284
|
namespaces: Map<string, Namespace>;
|
|
285
285
|
/**
|
|
286
|
-
* The
|
|
286
|
+
* The interfaces in the namespace.
|
|
287
287
|
*
|
|
288
288
|
* Order is implementation-defined and may change.
|
|
289
289
|
*/
|
package/dist/manifest.js
CHANGED