UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

12 lines (11 loc) 320 B
import type { DurationJSON } from "./SerializedTypes"; export declare class Duration { private _days; private _months; private _years; constructor(days: number, months: number, years: number); get days(): number; get months(): number; get years(): number; toJSONObject(): DurationJSON; }