Add header to assertsharp definition

This commit is contained in:
Bruno Leonardo Michels
2015-11-03 20:08:56 -02:00
parent 243847c943
commit 63953292ac
+5
View File
@@ -1,3 +1,8 @@
// Type definitions for assertsharp
// Project: https://www.npmjs.com/package/assertsharp
// Definitions by: Bruno Leonardo Michels <https://github.com/brunolm>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "assertsharp" {
export default class Assert {
static AreEqual<T>(expected: T, actual: T, message?: string): void;