api: re-order exports in index

This commit is contained in:
Grégoire Geis 2021-11-06 01:07:15 +01:00
parent d0a60473c3
commit 44012f61be

View File

@ -22,19 +22,22 @@ export * from "./search/range";
export * from "./search/word";
export * from "./types";
export { firstVisibleLine, middleVisibleLine, lastVisibleLine } from "./lines";
export * as Lines from "./lines";
/**
* Operations on `vscode.Selection`s.
* Operations on lines in `vscode`.
*/
export * as Selections from "./selections";
export * as Lines from "./lines";
export { firstVisibleLine, middleVisibleLine, lastVisibleLine } from "./lines";
/**
* Operations on `vscode.Position`s.
*/
export * as Positions from "./positions";
/**
* Operations on `vscode.Selection`s.
*/
export * as Selections from "./selections";
/**
* Returns the module exported by the extension with the given identifier.
*/