@truenine/memory-sync-cli 2026.10116.102 → 2026.10118.11510
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 +8 -0
- package/dist/index.mjs +32 -29
- package/package.json +1 -1
package/dist/globals/index.d.mts
CHANGED
|
@@ -165,6 +165,14 @@ interface MdxGlobalScope {
|
|
|
165
165
|
declare global {
|
|
166
166
|
/** User profile information */
|
|
167
167
|
const profile: UserProfile, /** Tool name references for AI assistants */tool: ToolReferences, /** Environment variables context */env: EnvironmentContext, /** Operating system information */os: OsInfo, /** Conditional Markdown component with Line sub-component */Md: MdComponent;
|
|
168
|
+
namespace JSX {
|
|
169
|
+
interface IntrinsicElements {
|
|
170
|
+
/** Block-level conditional Markdown wrapper @example <Md when={os.kind === 'mac'}>macOS content</Md> */
|
|
171
|
+
'Md': MdProps;
|
|
172
|
+
/** Inline conditional text @example <Md.Line when={os.kind === 'win'}>PowerShell</Md.Line> */
|
|
173
|
+
'Md.Line': MdLineProps;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
168
176
|
}
|
|
169
177
|
//#endregion
|
|
170
178
|
export { EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
|