docs: clarify captured at timestamp

This commit is contained in:
Oscar Lorentzon 2021-06-07 22:28:00 +02:00
parent 4aa7b8ce06
commit d527a7de6e
2 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,9 @@ export interface SpatialImageEnt extends CameraEnt, IDEnt {
atomic_scale?: number;
/**
* Timestamp when the image was captured.
* Timestamp representing the capture date and time.
*
* @description Unix epoch timestamp in milliseconds.
*/
captured_at: number;

View File

@ -125,6 +125,9 @@ export class Image {
/**
* Get capturedAt.
*
* @description Timestamp of the image capture date
* and time represented as a Unix epoch timestamp in milliseconds.
*
* @returns {number} Timestamp when the image was captured.
*/
public get capturedAt(): number {