mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-24 00:55:00 +03:00
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
|
export interface SystemInfo {
|
|||
|
cadesVersion: string;
|
|||
|
cspVersion: string;
|
|||
|
}
|
|||
|
/**
|
|||
|
* Предоставляет информацию о системе
|
|||
|
*
|
|||
|
* @returns информацию о CSP и плагине
|
|||
|
*/
|
|||
|
export declare const getSystemInfo: () => Promise<SystemInfo>;
|