UNPKG
coreui-angular-ex-dev
Version:
latest (4.5.14)
4.5.14
CoreUI Components Library for Angular
coreui.io/angular/
coreui/coreui-angular
coreui-angular-ex-dev
/
projects
/
coreui-angular
/
src
/
lib
/
toast
/
toaster
/
toaster-host.directive.ts
14 lines
(11 loc)
•
276 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
Directive
,
ViewContainerRef
}
from
'@angular/core'
;
@Directive
({
selector
:
'[cToasterHost]'
,
exportAs
:
'cToasterHost'
,
standalone
:
true
})
export
class
ToasterHostDirective
{
constructor
(
public
viewContainerRef
:
ViewContainerRef
) { } }