-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorganize API definitions to avoid circular imports
- Loading branch information
Showing
5 changed files
with
40 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Extractor Public API | ||
* | ||
* Please note that this APIs can be subject to change and relocation to separate package in the future releases. | ||
* | ||
* @see https://github.com/krassowski/jupyterlab-lsp/issues/561 | ||
*/ | ||
export { LanguageIdentifier } from '../lsp'; | ||
export { | ||
IForeignCodeExtractor, | ||
IForeignCodeExtractorsRegistry, | ||
IExtractedCode | ||
} from '../extractors/types'; | ||
export { RegExpForeignCodeExtractor } from '../extractors/regexp'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** Extractor Public API */ | ||
export * from './extractor'; | ||
|
||
/** Overrides Public API */ | ||
export * from './overrides'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Overrides Public API | ||
* | ||
* Please note that this APIs can be subject to change and relocation to separate package in the future releases. | ||
* | ||
* @see https://github.com/krassowski/jupyterlab-lsp/issues/561 | ||
*/ | ||
export { | ||
ILSPCodeOverridesManager, | ||
IScopedCodeOverride | ||
} from '../overrides/tokens'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters