ReadonlyPartialJSONArray | @lumino (original) (raw)

interface ReadonlyPartialJSONArray {
[unscopables]: {
[unscopables]?: boolean;
length?: boolean;
[iterator]?: any;
concat?: any;
entries?: any;
every?: any;
filter?: any;
find?: any;
findIndex?: any;
forEach?: any;
includes?: any;
indexOf?: any;
join?: any;
keys?: any;
lastIndexOf?: any;
map?: any;
reduce?: any;
reduceRight?: any;
slice?: any;
some?: any;
toLocaleString?: any;
toString?: any;
values?: any;
};
length: number;
[iterator](): IterableIterator<ReadonlyPartialJSONValue>;
concat(...items): ReadonlyPartialJSONValue[];
concat(...items): ReadonlyPartialJSONValue[];
entries(): IterableIterator<[number, ReadonlyPartialJSONValue]>;
every<S>(predicate, thisArg?): this is readonly S[];
every(predicate, thisArg?): boolean;
filter<S>(predicate, thisArg?): S[];
filter(predicate, thisArg?): ReadonlyPartialJSONValue[];
find<S>(predicate, thisArg?): undefined | S;
find(predicate, thisArg?): undefined | ReadonlyPartialJSONValue;
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[];
reduce(callbackfn): ReadonlyPartialJSONValue;
reduce(callbackfn, initialValue): ReadonlyPartialJSONValue;
reduce<U>(callbackfn, initialValue): U;
reduceRight(callbackfn): ReadonlyPartialJSONValue;
reduceRight(callbackfn, initialValue): ReadonlyPartialJSONValue;
reduceRight<U>(callbackfn, initialValue): U;
slice(start?, end?): ReadonlyPartialJSONValue[];
some(predicate, thisArg?): boolean;
toLocaleString(): string;
toString(): string;
values(): IterableIterator<ReadonlyPartialJSONValue>;
}

Hierarchy

Index

Properties

Readonly [unscopables]

[unscopables]: {
[unscopables]?: boolean;
length?: boolean;
[iterator]?: any;
concat?: any;
entries?: any;
every?: any;
filter?: any;
find?: any;
findIndex?: any;
forEach?: any;
includes?: any;
indexOf?: any;
join?: any;
keys?: any;
lastIndexOf?: any;
map?: any;
reduce?: any;
reduceRight?: any;
slice?: any;
some?: any;
toLocaleString?: any;
toString?: any;
values?: any;
}

Type declaration

Readonly length

length: number

Methods

[iterator]

concat

entries

every

Parameters

Returns this is readonly S[]

Returns boolean

filter

Parameters

Returns S[]

Returns ReadonlyPartialJSONValue[]

find

Parameters

Returns undefined | S

Returns undefined | ReadonlyPartialJSONValue

findIndex

Returns number

forEach

Returns void

includes

indexOf

join

Returns string

keys

lastIndexOf

map

Parameters

Returns U[]

reduce

Returns ReadonlyPartialJSONValue

Returns ReadonlyPartialJSONValue

Parameters

Returns U

reduceRight

Returns ReadonlyPartialJSONValue

Returns ReadonlyPartialJSONValue

Parameters

Returns U

slice

Returns ReadonlyPartialJSONValue[]

some

Returns boolean

toLocaleString

toString

values