JSONArray | @lumino (original) (raw)

interface JSONArray {
[unscopables]: {
[unscopables]?: boolean;
length?: boolean;
[iterator]?: any;
concat?: any;
copyWithin?: any;
entries?: any;
every?: any;
fill?: any;
filter?: any;
find?: any;
findIndex?: any;
forEach?: any;
includes?: any;
indexOf?: any;
join?: any;
keys?: any;
lastIndexOf?: any;
map?: any;
pop?: any;
push?: any;
reduce?: any;
reduceRight?: any;
reverse?: any;
shift?: any;
slice?: any;
some?: any;
sort?: any;
splice?: any;
toLocaleString?: any;
toString?: any;
unshift?: any;
values?: any;
};
length: number;
[iterator](): IterableIterator<JSONValue>;
concat(...items): JSONValue[];
concat(...items): JSONValue[];
copyWithin(target, start?, end?): this;
entries(): IterableIterator<[number, JSONValue]>;
every<S>(predicate, thisArg?): this is S[];
every(predicate, thisArg?): boolean;
fill(value, start?, end?): this;
filter<S>(predicate, thisArg?): S[];
filter(predicate, thisArg?): JSONValue[];
find<S>(predicate, thisArg?): undefined | S;
find(predicate, thisArg?): undefined | JSONValue;
findIndex(predicate, thisArg?): number;
forEach(callbackfn, thisArg?): void;
includes(searchElement, fromIndex?): boolean;
indexOf(searchElement, fromIndex?): number;
join(separator?): string;
keys(): IterableIterator<number>;
lastIndexOf(searchElement, fromIndex?): number;
map<U>(callbackfn, thisArg?): U[];
pop(): undefined | JSONValue;
push(...items): number;
reduce(callbackfn): JSONValue;
reduce(callbackfn, initialValue): JSONValue;
reduce<U>(callbackfn, initialValue): U;
reduceRight(callbackfn): JSONValue;
reduceRight(callbackfn, initialValue): JSONValue;
reduceRight<U>(callbackfn, initialValue): U;
reverse(): JSONValue[];
shift(): undefined | JSONValue;
slice(start?, end?): JSONValue[];
some(predicate, thisArg?): boolean;
sort(compareFn?): this;
splice(start, deleteCount?): JSONValue[];
splice(start, deleteCount, ...items): JSONValue[];
toLocaleString(): string;
toString(): string;
unshift(...items): number;
values(): IterableIterator<JSONValue>;
}

Hierarchy

Index

Properties

Readonly [unscopables]

[unscopables]: {
[unscopables]?: boolean;
length?: boolean;
[iterator]?: any;
concat?: any;
copyWithin?: any;
entries?: any;
every?: any;
fill?: any;
filter?: any;
find?: any;
findIndex?: any;
forEach?: any;
includes?: any;
indexOf?: any;
join?: any;
keys?: any;
lastIndexOf?: any;
map?: any;
pop?: any;
push?: any;
reduce?: any;
reduceRight?: any;
reverse?: any;
shift?: any;
slice?: any;
some?: any;
sort?: any;
splice?: any;
toLocaleString?: any;
toString?: any;
unshift?: any;
values?: any;
}

Type declaration

length

length: number

Methods

[iterator]

concat

Returns JSONValue[]

copyWithin

Returns this

entries

every

Parameters

Returns this is S[]

Returns boolean

fill

Returns this

filter

Parameters

Returns S[]

Returns JSONValue[]

find

Parameters

Returns undefined | S

Returns undefined | JSONValue

findIndex

Returns number

forEach

Returns void

includes

Returns boolean

indexOf

Returns number

join

Returns string

keys

lastIndexOf

Returns number

map

Parameters

Returns U[]

pop

push

reduce

Returns JSONValue

Returns JSONValue

Parameters

Returns U

reduceRight

Returns JSONValue

Returns JSONValue

Parameters

Returns U

reverse

shift

slice

Returns JSONValue[]

some

Returns boolean

sort

Returns this

splice

Returns JSONValue[]

An array containing the elements that were deleted.

Returns JSONValue[]

An array containing the elements that were deleted.

toLocaleString

toString

unshift

values