UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

12 lines (11 loc) 514 B
import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable"; import { DateResult } from "./DateResult"; import type { DrivingLicenseCategoryJSON } from "../SerializedTypes"; export declare class DrivingLicenseCategory implements Serializable<DrivingLicenseCategoryJSON> { private json; get code(): string; get dateOfIssue(): DateResult | null; get dateOfExpiry(): DateResult | null; private static fromJSON; toJSONObject(): DrivingLicenseCategoryJSON; }