UNPKG

@microblink/blinkid-in-browser-sdk

Version:

A simple ID scanning library for WebAssembly-enabled browsers.

17 lines (16 loc) 536 B
/** * Copyright (c) Microblink Ltd. All rights reserved. */ /** * Detailed information about the address. */ export interface AddressDetailedInfo { /** The address street portion of the document owner. */ readonly street: string; /** The address postal code portion of the document owner. */ readonly postalCode: string; /** The address city portion of the document owner. */ readonly city: string; /** The address jurisdiction code portion of the document owner. */ readonly jurisdiction: string; }