UNPKG
some-shit
Version:
latest (1.2.10)
1.2.10
Web3Modal implementation for Angular
gitlab.com/minds/web3modal-angular
some-shit
/
lib
/
modal
/
modal.component.d.ts
10 lines
(9 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
EventEmitter
}
from
'@angular/core'
;
export
declare
class
Modal
{
allowClose
:
boolean
;
hidden
:
boolean
;
closed
:
EventEmitter
<
any
>;
set
_hidden
(
value
:
boolean
);
set
open
(
value
:
boolean
);
close
(
event
:
any
):
void
; }