@microblink/blinkid-in-browser-sdk
Version:
A simple ID scanning library for WebAssembly-enabled browsers.
28 lines (23 loc) • 606 B
text/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;
}