Skip to content
Prev Previous commit
Next Next commit
Fix error
  • Loading branch information
mhegazy committed May 3, 2016
commit e5a32b71aa537e2c5b241b5b0e6f60895ea1cea6
6 changes: 3 additions & 3 deletions tests/cases/fourslash/fourslash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ declare module ts {
None = 0,
Block = 1,
Smart = 2,
}
}

interface OutputFile {
name: string;
writeByteOrderMark: boolean;
text: string;
}
}
}

declare namespace FourSlashInterface {
Expand Down Expand Up @@ -139,7 +139,7 @@ declare namespace FourSlashInterface {
isValidBraceCompletionAtPostion(openingBrace?: string): void;
}
class verify extends verifyNegatable {
assertHasRanges(ranges: FourSlash.Range[]): void;
assertHasRanges(ranges: Range[]): void;
caretAtMarker(markerName?: string): void;
indentationIs(numberOfSpaces: number): void;
indentationAtPositionIs(fileName: string, position: number, numberOfSpaces: number, indentStyle?: ts.IndentStyle): void;
Expand Down