mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 09:04:59 +03:00
10 lines
335 B
TypeScript
10 lines
335 B
TypeScript
|
export interface ExtendedKeysTranslations {
|
|||
|
[key: string]: string | null;
|
|||
|
}
|
|||
|
/**
|
|||
|
* Возвращает расшифрованные ОИД'ы сертификата
|
|||
|
*
|
|||
|
* @returns словарь расшифрованных ОИД'ов
|
|||
|
*/
|
|||
|
export declare const getDecodedExtendedKeyUsage: () => Promise<ExtendedKeysTranslations>;
|