Class: HtmlToMarkdown::TextAnnotation
- Inherits:
-
Object
- Object
- HtmlToMarkdown::TextAnnotation
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#end ⇒ Integer
readonly
Returns the value of attribute end.
-
#kind ⇒ AnnotationKind
readonly
Returns the value of attribute kind.
-
#start ⇒ Integer
readonly
Returns the value of attribute start.
Instance Method Summary collapse
-
#initialize ⇒ TextAnnotation
constructor
A new instance of TextAnnotation.
Constructor Details
#initialize ⇒ TextAnnotation
Returns a new instance of TextAnnotation.
227 |
# File 'sig/types.rbs', line 227
def initialize: (start: Integer, end: Integer, kind: AnnotationKind) -> void
|
Instance Attribute Details
#end ⇒ Integer (readonly)
Returns the value of attribute end.
224 225 226 |
# File 'sig/types.rbs', line 224 def end @end end |
#kind ⇒ AnnotationKind (readonly)
Returns the value of attribute kind.
225 226 227 |
# File 'sig/types.rbs', line 225 def kind @kind end |
#start ⇒ Integer (readonly)
Returns the value of attribute start.
223 224 225 |
# File 'sig/types.rbs', line 223 def start @start end |