tslint5 adoption - fix semicolon rule

This commit is contained in:
Erich Gamma
2017-11-07 12:07:09 +01:00
parent 56111c9cc6
commit b94569fe0d
90 changed files with 152 additions and 149 deletions

View File

@@ -64,7 +64,7 @@ namespace delta {
}
});
return { removed, added };
};
}
export function ofMaps<K, V>(before: Map<K, V>, after: Map<K, V>): { removed: V[], added: V[] } {
const removed: V[] = [];
@@ -80,7 +80,7 @@ namespace delta {
}
});
return { removed, added };
};
}
}
class EditorSnapshot {