mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-23 16:44:59 +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>;
|