diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb..e22defd51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Fix issue where TS users couldn't compile their code because of unexported types. (#1032) diff --git a/src/common/manifest.ts b/src/common/manifest.ts index 379e61a4f..e807cdc8f 100644 --- a/src/common/manifest.ts +++ b/src/common/manifest.ts @@ -20,7 +20,6 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. /** - * @internal * An definition of a function as appears in the Manifest. */ export interface ManifestEndpoint { @@ -68,7 +67,6 @@ export interface ManifestEndpoint { }; } -/* @internal */ export interface ManifestRequiredAPI { api: string; reason: string;