/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
declare module jasmine {
    interface Matchers {
        toHaveText(text: string): boolean;
        toContainText(text: string): boolean;
    }
}
