File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ under the licensing terms detailed in LICENSE:
3333* Piotr Oleś <piotrek.oles@gmail.com>
3434* Saúl Cabrera <saulecabrera@gmail.com>
3535* Chance Snow <git@chancesnow.me>
36+ * Jerry Green <me@jerrygreen.me>
3637
3738Portions of this software are derived from third-party works licensed under
3839the following terms:
@@ -58,6 +59,6 @@ the following terms:
5859 The 3-Clause BSD License (https://opensource.org/licenses/BSD-3-Clause)
5960
6061* Arm Optimized Routines: https://github.com/ARM-software/optimized-routines
61-
62+
6263 Copyright (c) Arm Limited
6364 The MIT License (https://opensource.org/licenses/MIT)
Original file line number Diff line number Diff line change @@ -604,7 +604,6 @@ export class TSDBuilder extends ExportsWalker {
604604 build ( ) : string {
605605 var sb = this . sb ;
606606 var isWasm64 = this . program . options . isWasm64 ;
607- sb . push ( "declare module ASModule {\n" ) ;
608607 sb . push ( " type i8 = number;\n" ) ;
609608 sb . push ( " type i16 = number;\n" ) ;
610609 sb . push ( " type i32 = number;\n" ) ;
@@ -629,8 +628,6 @@ export class TSDBuilder extends ExportsWalker {
629628 ++ this . indentLevel ;
630629 this . walk ( ) ;
631630 -- this . indentLevel ;
632- sb . push ( "}\n" ) ;
633- sb . push ( "export default ASModule;\n" ) ;
634631 return this . sb . join ( "" ) ;
635632 }
636633}
You can’t perform that action at this time.
0 commit comments