Skip to content

Commit

Permalink
2.7 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed May 28, 2019
1 parent 9bea520 commit 35aca23
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/model/Column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export declare function summaryRendererChanged(previous: string, current: string
export declare function visibilityChanged(previous: boolean, current: boolean): void;

export interface IColumnConstructor {
new(id: string, desc: Readonly<IColumnDesc & any>, factory: ITypeFactory): Column;
new(id: string, desc: Readonly<IColumnDesc> & any, factory: ITypeFactory): Column;
}

/**
Expand Down
10 changes: 9 additions & 1 deletion typeGen/ts27/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
"emitDeclarationOnly": true,
"declarationDir": "../../build/types/2.7/",
"types": []
}
},
"include": [
"../../src/**/*.ts",
"../../src/**/*.tsx",
"../../tsd.d.ts"
],
"exclude": [
"../../src/**/*.d.ts"
]
}

0 comments on commit 35aca23

Please sign in to comment.