UNPKG
ngx-chat
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Chat for getting contacts
github.com/wasteCleaner/ngx-chat
wasteCleaner/ngx-chat
ngx-chat
/
src
/
app
/
ngx-chat
/
chat
/
chat.component.d.ts
10 lines
(9 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
OnInit
,
NgZone
}
from
'@angular/core'
;
export
declare
class
ChatComponent
implements
OnInit
{
private
zone;
chatState
:
string
;
timeoutSize
:
number
;
constructor
(
zone
:
NgZone
);
ngOnInit
():
void
;
showNotification
():
void
; }