forked from vgoma/crypto-pro
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from kernusr/release-2.3.0-prepare
2.3.0
- Loading branch information
Showing
24 changed files
with
23,995 additions
and
14,037 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Certificate } from './certificate'; | ||
/** | ||
* Возвращает все сертификаты без фильтрации по дате и наличию приватного ключа | ||
* | ||
* @param resetCache = false - позволяет сбросить кэш ранее полученных сертификатов | ||
* @returns список сертификатов | ||
*/ | ||
export declare const getAllUserCertificates: (resetCache?: boolean) => Promise<Certificate[]>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Предоставляет информацию о системе | ||
* | ||
* @returns информацию о CSP | ||
*/ | ||
export declare const getCspVersion: () => Promise<string>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Предоставляет информацию о системе | ||
* | ||
* @returns информацию о плагине | ||
*/ | ||
export declare const getPluginVersion: () => Promise<string>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Type definitions for crypto-pro-js 2.3.0 | ||
// Project: crypto-pro-js | ||
// Definitions by: Artem Vasilev https://github.com/kernusr | ||
|
||
export as namespace cryptoPro; | ||
|
||
export * from './api'; |
Oops, something went wrong.