diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-09-04 12:23:38 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-05 08:45:55 -0400 |
commit | 10dc71133af211de40e29e7a7ab8c470a4a2c417 (patch) | |
tree | f44cd8d8dc430f22cec974ac4ccd4490453de20b /js/compiler.ts | |
parent | 2c0d00840d09ce6d8f2b8615c9682ce4dfbfdb9d (diff) |
Mark APIs at internal and include JSDoc in types
Diffstat (limited to 'js/compiler.ts')
-rw-r--r-- | js/compiler.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index fc3dc0b17..eaf64ce87 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -50,6 +50,7 @@ type OutputCode = string; /** * Abstraction of the APIs required from the `os` module so they can be * easily mocked. + * @internal */ export interface Os { codeCache: typeof os.codeCache; @@ -60,6 +61,7 @@ export interface Os { /** * Abstraction of the APIs required from the `typescript` module so they can * be easily mocked. + * @internal */ export interface Ts { createLanguageService: typeof ts.createLanguageService; |