export enum MessageCode {
  BIOMETRICS_COMPLETED = 'BIOMETRICS_COMPLETED',
  BIOMETRICS_RETRY = 'BIOMETRICS_RETRY',
  BIOMETRICS_ERROR = 'BIOMETRICS_ERROR',
}

export interface EBiometricsMessage {
  code: MessageCode;
  content?: any;
}
