Update LKG

This commit is contained in:
Mohamed Hegazy
2016-12-13 14:53:19 -08:00
parent e9814f8a2f
commit a6decf98bf
11 changed files with 2487 additions and 1491 deletions

View File

@@ -27,6 +27,15 @@ interface Array<T> {
includes(searchElement: T, fromIndex?: number): boolean;
}
interface ReadonlyArray<T> {
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.
* @param searchElement The element to search for.
* @param fromIndex The position in this array at which to begin searching for searchElement.
*/
includes(searchElement: T, fromIndex?: number): boolean;
}
interface Int8Array {
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.