Skip to content

Commit

Permalink
Modify to es6 module standard format
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Oct 4, 2015
1 parent 98d3168 commit 8ab759a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions power-assert/power-assert.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/// <reference path="../power-assert-formatter/power-assert-formatter.d.ts" />

declare function assert(value:any, message?:string):void;
declare module assert {
declare namespace assert {
export class AssertionError implements Error {
name:string;
message:string;
Expand Down Expand Up @@ -62,5 +62,5 @@ declare module assert {
}

declare module "power-assert" {
export = assert;
export default assert;
}

0 comments on commit 8ab759a

Please sign in to comment.