UNPKG
@eclipsejs/cli
Version:
latest (1.1.0)
1.1.0
1.0.0
0.8.1
0.8.0
0.7.0
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.12
0.2.11
0.2.10
0.2.9
Inject environment variables on runtime
dlesage25/eclipse-cli
@eclipsejs/cli
/
lib
/
src
/
eclipse
/
keychain
/
keychain.d.ts
6 lines
(5 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
export
default
class
KeyChain
{
getKey
(
service
:
string
,
account
:
string
): Promise<
string
|
null
>;
setKey
(
service
:
string
,
account
:
string
,
password
:
string
): Promise<
void
>;
deleteKey
(
service
:
string
,
account
:
string
): Promise<
boolean
>; }