@milkdown/exception
Advanced tools
Comparing version 4.8.2 to 4.9.0
@@ -11,2 +11,3 @@ export declare const docTypeError: (type: unknown) => Error; | ||
export declare const expectDomTypeError: (node: unknown) => Error; | ||
export declare const callCommandBeforeEditorView: () => Error; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -31,2 +31,3 @@ export const docTypeError = (type) => new Error(`Doc type error, unsupported type: ${JSON.stringify(type)}`); | ||
export const expectDomTypeError = (node) => new Error(`Expect to be a dom, but get: ${JSON.stringify(node)}.`); | ||
export const callCommandBeforeEditorView = () => new Error(`You're trying to call a command before editor view initialized, make sure to get commandManager from ctx after editor view has been initialized`); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@milkdown/exception", | ||
"version": "4.8.2", | ||
"version": "4.9.0", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "module": "lib/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6686
42