import { type DataViewReader } from "./data-view-reader.js"; import { type DateTime } from "./date-time.js"; export interface ObjectLastModified { objectLastModified: DateTime; } /** * The fields in the above table, reading from top to bottom, are shown in the order of LSO to MSO, where LSO = Least Significant Octet and MSO = Most Significant Octet. Data Type: Same format as the Date Time characteristic * @see {@link https://raw.githubusercontent.com/oesmith/gatt-xml/refs/heads/master/org.bluetooth.characteristic.object_last_modified.xml | Object Last Modified} */ export declare class ObjectLastModifiedImpl implements ObjectLastModified { static readonly UUID_PREFIX = 10946; static readonly TYPE_NAME = "org.bluetooth.characteristic.object_last_modified"; static readonly NAME = "Object Last-Modified"; /** Parse from a DataView into {@link ObjectLastModified}. */ static fromDataView(dataView: DataView | DataViewReader, indexStart?: number | undefined): ObjectLastModifiedImpl; readonly objectLastModified: DateTime; constructor(objectLastModified: ObjectLastModified); } /** Parse from a DataView into {@link ObjectLastModified}. */ export declare function objectLastModifiedFromDataView(dataView: DataView | DataViewReader, indexStart?: number): ObjectLastModified; //# sourceMappingURL=object-last-modified.d.ts.map