Class: HtmlToMarkdown::TextAnnotation

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTextAnnotation

Returns a new instance of TextAnnotation.

Parameters:



227
# File 'sig/types.rbs', line 227

def initialize: (start: Integer, end: Integer, kind: AnnotationKind) -> void

Instance Attribute Details

#endInteger (readonly)

Returns the value of attribute end.

Returns:

  • (Integer)


224
225
226
# File 'sig/types.rbs', line 224

def end
  @end
end

#kindAnnotationKind (readonly)

Returns the value of attribute kind.

Returns:



225
226
227
# File 'sig/types.rbs', line 225

def kind
  @kind
end

#startInteger (readonly)

Returns the value of attribute start.

Returns:

  • (Integer)


223
224
225
# File 'sig/types.rbs', line 223

def start
  @start
end