mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-19 12:45:58 -05:00
99 lines
4.3 KiB
TypeScript
99 lines
4.3 KiB
TypeScript
interface Array<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 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<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Uint8Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Int16Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Uint16Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Int32Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Uint32Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Float32Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|
|
|
|
interface Float64Array<TArrayBuffer extends ArrayBufferLike> {
|
|
/**
|
|
* 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: number, fromIndex?: number): boolean;
|
|
}
|