Skip to content

Commit

Permalink
Fixing type checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ofiriro3 committed Jan 15, 2023
1 parent 3dd6205 commit 16afec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

describe('Table Sort', () => {
type SortingMethod = (string, string) => number;
type SortingMethod = (a: string, b: string) => number;
type SortDirection = 'asc' | 'desc';
// Sort by lexical order will sort by the first character of the string (case-sensitive)
const compareStringByLexicographicOrder = (a: string, b: string) => {
Expand Down

0 comments on commit 16afec1

Please sign in to comment.