mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
9 lines
306 B
TypeScript
9 lines
306 B
TypeScript
import { Certificate } from './certificate';
|
|
/**
|
|
* Возвращает сертификат по отпечатку
|
|
*
|
|
* @param thumbprint - отпечаток сертификата
|
|
* @returns сертификат
|
|
*/
|
|
export declare const getCertificate: (thumbprint: string) => Promise<Certificate>;
|