@microblink/blinkid-in-browser-sdk
Version:
A simple ID scanning library for WebAssembly-enabled browsers.
23 lines (22 loc) • 624 B
TypeScript
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
/**
* Driver's license specific data.
*/
export interface DriverLicenseDetailedInfo {
/** The driver license conditions. */
readonly conditions: string;
/**
* The restrictions to driving privileges for the driver license owner.
*/
readonly restrictions: string;
/**
* The additional privileges granted to the driver license owner.
*/
readonly endorsements: string;
/**
* The type of vehicle the driver license owner has privilege to drive.
*/
readonly vehicleClass: string;
}