UNPKG
cache-typescript-sdk
Version:
latest (0.0.1)
0.0.1
Blockstart NIS1 SDK
github.com/blockstart/blockstart-nis1-sdk
blockstart/blockstart-nis1-sdk
cache-typescript-sdk
/
dist
/
src
/
models
/
wallet
/
Password.d.ts
15 lines
(14 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Password model */
export
declare
class
Password
{
/** * Password value */
readonly
value:
string
;
/** * Create a password with at least 8 characters *
@param
password */
constructor
(
password
:
string
); }