@truenine/memory-sync-cli 2026.10107.0 → 2026.10107.106
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/globals/index.d.mts +5 -9
- package/dist/index.mjs +69 -69
- package/package.json +6 -6
package/dist/globals/index.d.mts
CHANGED
|
@@ -166,15 +166,11 @@ interface MdxGlobalScope {
|
|
|
166
166
|
}
|
|
167
167
|
declare global {
|
|
168
168
|
/** User profile information */
|
|
169
|
-
const profile: UserProfile
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
/** Operating system information */
|
|
175
|
-
const os: OsInfo;
|
|
176
|
-
/** Conditional Markdown component with Line sub-component */
|
|
177
|
-
const Md: MdComponent;
|
|
169
|
+
const profile: UserProfile, /** Tool name references for AI assistants */
|
|
170
|
+
tool: ToolReferences, /** Environment variables context */
|
|
171
|
+
env: EnvironmentContext, /** Operating system information */
|
|
172
|
+
os: OsInfo, /** Conditional Markdown component with Line sub-component */
|
|
173
|
+
Md: MdComponent;
|
|
178
174
|
}
|
|
179
175
|
//#endregion
|
|
180
176
|
export { EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
|