UNPKG
bitcitawebfrontlib-ibsalut
Version:
latest (1.2.6)
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Angular CLI project used by other Angular projects in the bitcita web project.<br />
bitcitawebfrontlib-ibsalut
/
shared
/
directive
/
focus-register.directive.d.ts
10 lines
(9 loc)
•
308 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ElementRef
}
from
"@angular/core"
;
import
{
FocusService
}
from
"../service/focus.service"
;
export
declare
class
FocusRegisterDirective
{
private
elRef;
private
focusService;
constructor
(
elRef
:
ElementRef
,
focusService
:
FocusService
);
onFocus
():
void
;
onBlur
():
void
; }