mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
11 lines
618 B
TypeScript
11 lines
618 B
TypeScript
import { TagsTranslations } from '../../constants/tags-translations';
|
||
import { TagTranslation } from '../../helpers/_parseCertInfo';
|
||
/**
|
||
* Возвращает расшифрованную информацию о сертификате из указанного свойства по тэгам
|
||
*
|
||
* @param tags = словарь
|
||
* @param entitiesPath = путь к разбираемой сущности
|
||
* @returns расшифрованная информация по отдельным тэгам
|
||
*/
|
||
export declare const getInfo: (tags: TagsTranslations[], entitiesPath: string) => Promise<TagTranslation[]>;
|