UNPKG
modalicious
Version:
latest (1.0.0)
1.0.0
0.5.1
0.5.0
0.4.1
0.4.0
0.4.0-alpha
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
0.0.2
0.0.1
A modal service for Angular
github.com/tristanmenzel/modalicious
tristanmenzel/modalicious
modalicious
/
services
/
modal-instance.service.d.ts
6 lines
(5 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
class
ModalInstanceService
{
cancel
:
(
reason
?:
string
) =>
void
;
resolve
:
(
result
?:
any
) =>
void
;
constructor
(
cancel
: (reason?:
string
) =>
void
,
resolve
: (result?:
any
) =>
void
); }