mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +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>;
|