forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
14
electron/node_modules/pe-library/dist/format/ArrayFormatBase.d.ts
generated
vendored
Normal file
14
electron/node_modules/pe-library/dist/format/ArrayFormatBase.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import FormatBase from './FormatBase.js';
|
||||
/** abstract class that support array-like methods and 'for...of' operation */
|
||||
declare abstract class ArrayFormatBase<T> extends FormatBase {
|
||||
protected constructor(view: DataView);
|
||||
abstract readonly length: number;
|
||||
abstract get(index: number): Readonly<T>;
|
||||
abstract set(index: number, data: T): void;
|
||||
forEach(callback: (value: T, index: number, base: this) => void): void;
|
||||
_iterator(): Iterator<Readonly<T>>;
|
||||
}
|
||||
interface ArrayFormatBase<T> {
|
||||
[Symbol.iterator]: () => Iterator<Readonly<T>>;
|
||||
}
|
||||
export default ArrayFormatBase;
|
||||
Loading…
Add table
Add a link
Reference in a new issue