-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed iOS keyboard input bug caused by iOS update.
- Loading branch information
Showing
31 changed files
with
4,390 additions
and
5,665 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// noinspection JSUnusedGlobalSymbols | ||
|
||
interface String { | ||
/** | ||
* Gets a substring beginning at the specified location and having the specified length. | ||
* (deprecation removed) | ||
* @param from The starting position of the desired substring. The index of the first character in the string is zero. | ||
* @param length The number of characters to include in the returned substring. | ||
*/ | ||
substr(from: number, length?: number): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.