Skip to content

eo-typewriterjs


eo-typewriterjs / TSelectValue

Type Alias: TSelectValue

ts
type TSelectValue = number | "start" | "end" | "whole";

Defined in: core/commands/types/select-command.type.ts:15

Description

The operand for a select command.

  • "start": select from current cursor position to document start
  • "end": select from current cursor position to document end
  • "whole": select the entire document
  • number: signed count - positive = forward, negative = backward

Released under the MIT License.