File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
11
11
limitations under the License.
12
12
*/
13
13
14
- import http from " http" ;
15
- import Restana from " restana" ;
14
+ import * as http from ' http' ;
15
+ import Restana from ' restana' ;
16
16
17
- export default interface IRequest extends http . IncomingMessage , Restana . RequestExtensions { }
17
+ export default interface IRequest extends http . IncomingMessage , Restana . RequestExtensions { }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
11
11
limitations under the License.
12
12
*/
13
13
14
- import http from " http" ;
15
- import Restana from " restana" ;
14
+ import * as http from ' http' ;
15
+ import Restana from ' restana' ;
16
16
17
- export default interface IResponse extends http . ServerResponse , Restana . ResponseExtensions { }
17
+ export default interface IResponse extends http . ServerResponse , Restana . ResponseExtensions { }
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ See the License for the specific language governing permissions and
11
11
limitations under the License.
12
12
*/
13
13
14
- import http from " http" ;
15
- import https from " https" ;
14
+ import * as http from ' http' ;
15
+ import * as https from ' https' ;
16
16
17
17
export type THTTPExecuteParams = {
18
18
body ?: string ;
19
19
headers ?: { [ key : string ] : any } ;
20
20
method : string ;
21
21
agent ?: http . Agent | https . Agent ;
22
- }
22
+ } ;
You can’t perform that action at this time.
0 commit comments