@reservation-studio/electron-types
Version:
TypeScript типове за ReservationStudioElectron
31 lines (30 loc) • 655 B
TypeScript
/**
* Represents information about a certificate that includes the slot number and name.
*/
export interface CertificateInfo {
/**
* The slot number associated with the certificate.
*/
slot: number;
/**
* The name of the certificate.
*/
name: string;
/**
* The serial number of the certificate.
*/
serialNumber: string;
}
/**
* Interface representing a certificate-based authentication structure.
*/
export interface CertificateAuth {
/**
* Represents the serial number of an item.
*/
serialNumber: string;
/**
* Personal identification code.
*/
pin: string;
}