TypeIntoEditorParams
Parameters for CommonArguments.typeIntoEditor.
Import:
import type { TypeIntoEditorParams } from 'obsidian-integration-testing';Signature:
export interface TypeIntoEditorParamsProperties
| Property | Type | Description |
|---|---|---|
| editor | Editor | The editor to type into. It is focused (with the caret moved to the end of the document) before the keystrokes are injected. |
| text | string | The text to type. Each code point is pressed via CommonArguments.pressKey (a trusted keyDown → char → keyUp), exactly as a real user typing. |