Converted Diff interfect object to type array

This commit is contained in:
Austen Talbot
2015-08-10 10:00:31 -07:00
parent 9522b37f7e
commit 99ee1fcd96
+1 -4
View File
@@ -4,10 +4,7 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "diff-match-patch" {
interface Diff {
0: number;
1: string;
}
type Diff = [number, string];
export class DiffMatchPatch {
Diff_Timeout: number;