Skip to content

Commit

Permalink
Revert "feat: Use TS named tuple for range (#385)"
Browse files Browse the repository at this point in the history
This reverts commit 3ed008a.
  • Loading branch information
eemeli committed May 29, 2022
1 parent 5050494 commit 98a1d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/Node.ts
Expand Up @@ -28,7 +28,7 @@ export type ParsedNode =
| YAMLMap.Parsed
| YAMLSeq.Parsed

export type Range = [start: number, valueEnd: number, nodeEnd: number]
export type Range = [number, number, number]

export const ALIAS = Symbol.for('yaml.alias')
export const DOC = Symbol.for('yaml.document')
Expand Down

0 comments on commit 98a1d5e

Please sign in to comment.