mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Fix left chunks and right chunks typing. (#20567)
leftChunks() and rightChunks() returns an array of MergeViewDiffChunk.
This commit is contained in:
parent
cd5ff7b75d
commit
447df163c1
4
types/codemirror/index.d.ts
vendored
4
types/codemirror/index.d.ts
vendored
@ -1239,14 +1239,14 @@ declare namespace CodeMirror {
|
||||
* Left side of the merge view.
|
||||
*/
|
||||
left: DiffView;
|
||||
leftChunks(): MergeViewDiffChunk;
|
||||
leftChunks(): MergeViewDiffChunk[];
|
||||
leftOriginal(): Editor;
|
||||
|
||||
/**
|
||||
* Right side of the merge view.
|
||||
*/
|
||||
right: DiffView;
|
||||
rightChunks(): MergeViewDiffChunk;
|
||||
rightChunks(): MergeViewDiffChunk[];
|
||||
rightOriginal(): Editor;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user