UNPKG

crypto-pro-js

Version:

Асинхронный JavaScript API для работы с КриптоПРО ЭЦП Browser Plug-In. Forked from https://github.com/vgoma/crypto-pro

15 lines (14 loc) 645 B
import { TagsTranslations } from '../constants/tags-translations'; export interface TagTranslation { description: string; title: string; isTranslated: boolean; } /** * Парсит информацию из строки с информацией о сертификате * * @param tagsTranslations - словарь с расшифровками тэгов * @param rawInfo - данные для парсинга * @returns расшифрованная информация по отдельным тэгам */ export declare const _parseCertInfo: (tagsTranslations: TagsTranslations[], rawInfo: string) => TagTranslation[];