Skip to content

Commit

Permalink
DEBUG try to broke TS $ExpectType
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 19, 2023
1 parent cec90ca commit 29c2ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$().accordion(); // $ExpectType JQuery<HTMLElement>

Check failure on line 3 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery<HTMLElement>, got: any
$().api();// $ExpectType JQuery

Check failure on line 4 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery, got: any
$().calendar(); // $ExpectType JQuery<HTMLElement>
$().calendar(); // $ExpectType JQuery<JQuery>

Check failure on line 5 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery<JQuery>, got: any
$().checkbox(); // $ExpectType JQuery<HTMLElement>

Check failure on line 6 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery<HTMLElement>, got: any
$('body').dimmer(); // $ExpectType JQuery<HTMLElement>

Check failure on line 7 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery<HTMLElement>, got: any
$().dropdown(); // $ExpectType JQuery<HTMLElement>

Check failure on line 8 in types/tests.ts

View workflow job for this annotation

GitHub Actions / Lint

Expected type to be: JQuery<HTMLElement>, got: any
Expand Down

0 comments on commit 29c2ec8

Please sign in to comment.