PartialJSONArray | @lumino (original) (raw)

interface PartialJSONArray {
[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<PartialJSONValue>;
concat(...items): PartialJSONValue[];
concat(...items): PartialJSONValue[];
copyWithin(target, start?, end?): this;
entries(): IterableIterator<[number, PartialJSONValue]>;
every<S>(predicate, thisArg?): this is S[];
every(predicate, thisArg?): boolean;
fill(value, start?, end?): this;
filter<S>(predicate, thisArg?): S[];
filter(predicate, thisArg?): PartialJSONValue[];
find<S>(predicate, thisArg?): undefined | S;
find(predicate, thisArg?): undefined | PartialJSONValue;
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 | PartialJSONValue;
push(...items): number;
reduce(callbackfn): PartialJSONValue;
reduce(callbackfn, initialValue): PartialJSONValue;
reduce<U>(callbackfn, initialValue): U;
reduceRight(callbackfn): PartialJSONValue;
reduceRight(callbackfn, initialValue): PartialJSONValue;
reduceRight<U>(callbackfn, initialValue): U;
reverse(): PartialJSONValue[];
shift(): undefined | PartialJSONValue;
slice(start?, end?): PartialJSONValue[];
some(predicate, thisArg?): boolean;
sort(compareFn?): this;
splice(start, deleteCount?): PartialJSONValue[];
splice(start, deleteCount, ...items): PartialJSONValue[];
toLocaleString(): string;
toString(): string;
unshift(...items): number;
values(): IterableIterator<PartialJSONValue>;
}

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

copyWithin

Returns this

entries

every

Parameters

Returns this is S[]

Returns boolean

fill

filter

Parameters

Returns S[]

Returns PartialJSONValue[]

find

Parameters

Returns undefined | S

Returns undefined | PartialJSONValue

findIndex

Returns number

forEach

Returns void

includes

indexOf

join

Returns string

keys

lastIndexOf

map

Parameters

Returns U[]

pop

push

reduce

Returns PartialJSONValue

Returns PartialJSONValue

Parameters

Returns U

reduceRight

Returns PartialJSONValue

Returns PartialJSONValue

Parameters

Returns U

reverse

shift

slice

Returns PartialJSONValue[]

some

Returns boolean

sort

Returns this

splice

Returns PartialJSONValue[]

An array containing the elements that were deleted.

An array containing the elements that were deleted.

toLocaleString

toString

unshift

values