mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
d5341a486c
Co-authored-by: Apoorv Mishra <apoorvmishra101092@gmail.com>
15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
import "prosemirror-view";
|
|
|
|
declare module "prosemirror-view" {
|
|
import { ResolvedPos } from "prosemirror-model";
|
|
import { EditorView } from "prosemirror-view";
|
|
|
|
export function __parseFromClipboard(
|
|
view: EditorView,
|
|
text: string,
|
|
html: string | null,
|
|
plainText: boolean,
|
|
$context: ResolvedPos
|
|
);
|
|
}
|