ctx-core 6.5.10 → 6.6.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.
- package/all/be_/index.d.ts +1 -2
- package/package.json +1 -1
package/all/be_/index.d.ts
CHANGED
|
@@ -160,8 +160,7 @@ export type ctx_T<ns_T extends string = string> = Readonly<{
|
|
|
160
160
|
*/
|
|
161
161
|
ns_T?:ns_T
|
|
162
162
|
}>
|
|
163
|
-
export type wide_ctx_T<ns_union_T extends string = ''> =
|
|
164
|
-
ctx_T&wide_ctx_s_T<ns_union_T>
|
|
163
|
+
export type wide_ctx_T<ns_union_T extends string = ''> = wide_ctx_s_T<ns_union_T>&{ is_ctx:true }
|
|
165
164
|
export type ctx_s_T<ns_union_T extends string = string> = {
|
|
166
165
|
[K in ns_union_T]:BeMap<K>
|
|
167
166
|
}
|