Skip to content

Commit 4f5dcba

Browse files
GaloisGirlIankodj
authored andcommitted
Update kendo.all.d.ts
Replaced some `void` with `any` as return types of `FileManager.getSelected()` and `FileManager.getSize()`. Voids can't be tested nor cast to bool and cause tons of compilation errors.
1 parent 826cc6f commit 4f5dcba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typescript/kendo.all.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4286,8 +4286,8 @@ declare namespace kendo.ui {
42864286
navigate(): void;
42874287
refresh(): void;
42884288
executeCommand(): void;
4289-
getSelected(): void;
4290-
getSize(): void;
4289+
getSelected(): any | any[];
4290+
getSize(): any;
42914291
destroy(): void;
42924292
setDataSource(dataSource: kendo.data.FileManagerDataSource): void;
42934293
items(): any;

0 commit comments

Comments
 (0)