This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'tiptap-extensions' { | |
import { Extension, Node, Mark } from "tiptap"; | |
import { NodeSpec } from "prosemirror-model"; | |
export interface PlaceholderOptions { | |
emptyNodeClass?: string, | |
emptyNodeText?: string, | |
showOnlyWhenEditable?: boolean, | |
showOnlyCurrent?: boolean, | |
emptyEditorClass: string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'tiptap-commands' { | |
import { EditorView } from "prosemirror-view"; | |
import { Transaction, EditorState, Plugin } from "prosemirror-state"; | |
import { InputRule } from "prosemirror-inputrules"; | |
import { NodeType, MarkType } from "prosemirror-model"; | |
export interface DispatchFn { | |
(tr: Transaction): boolean | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'tiptap' { | |
import { | |
MarkSpec, | |
MarkType, | |
Node as ProsemirrorNode, | |
NodeSpec, | |
NodeType, | |
ParseOptions, | |
Schema | |
} from "prosemirror-model"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function AAAAAAAA(direction, north, south, west, east, goo, last_move) { | |
var result = ''; | |
let forward; | |
let left; | |
let right; | |
let forwardName; | |
let backName; | |
let leftName; | |
let rightName; |