import { Value } from '../value.mts'; import { type OrdinaryObject, Realm } from '#self'; /** https://tc39.es/ecma262/#sec-dataview-objects */ export interface DataViewObject extends OrdinaryObject { readonly DataView: string; readonly ViewedArrayBuffer: Value; readonly ByteLength: number | 'auto'; readonly ByteOffset: number; } export declare function isDataViewObject(V: Value): V is DataViewObject; export declare function bootstrapDataView(realmRec: Realm): void; //# sourceMappingURL=DataView.d.mts.map