@neo-one/node-vm-browserify
Version:
NEO•ONE NEO VM.
9 lines (8 loc) • 321 B
TypeScript
import { ArrayLikeStackItem } from './ArrayLikeStackItem';
import { StackItemType } from './StackItemType';
export declare class ArrayStackItem extends ArrayLikeStackItem {
static readonly type = StackItemType.Array;
private readonly referenceID;
toStructuralKey(): string;
equals(other: any): boolean;
}