@mathcrowd/mmarked 3.1.0 → 3.1.1
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/CHANGELOG.md +19 -0
- package/dist/browser.umd.js +1 -1
- package/dist/demo.esm.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -70,6 +70,10 @@ interface UsageStats {
|
|
|
70
70
|
/** Session ID for aggregating stats across deployments */
|
|
71
71
|
sessionId?: string;
|
|
72
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* Stop usage tracking timer (for testing cleanup)
|
|
75
|
+
*/
|
|
76
|
+
declare function stopUsageTracking(): void;
|
|
73
77
|
/**
|
|
74
78
|
* Track function call (internal use)
|
|
75
79
|
*/
|
|
@@ -107,5 +111,5 @@ declare function clearValidationCache(): void;
|
|
|
107
111
|
*/
|
|
108
112
|
declare function resetUsageStats(): void;
|
|
109
113
|
|
|
110
|
-
export { UNLICENSED_WARNING_INTERVAL, clearValidationCache, configureLicense, getLicenseConfig, getWarningIfNeeded, isLicensed, renderMarkdown, renderMarkdownCompact, resetUsageStats, setUnlicensedWarningInterval, tex2svg, trackFunctionCall, validateLicense };
|
|
114
|
+
export { UNLICENSED_WARNING_INTERVAL, clearValidationCache, configureLicense, getLicenseConfig, getWarningIfNeeded, isLicensed, renderMarkdown, renderMarkdownCompact, resetUsageStats, setUnlicensedWarningInterval, stopUsageTracking, tex2svg, trackFunctionCall, validateLicense };
|
|
111
115
|
export type { LicenseConfig, LicenseValidationResult, UsageStats };
|