@@ -6,6 +6,8 @@ import {
|
||||
import { Store } from '@ngrx/store';
|
||||
import { Observable } from 'rxjs/Observable';
|
||||
|
||||
import { ClientRect } from '../../dom';
|
||||
|
||||
import {
|
||||
KeyAction,
|
||||
KeystrokeAction,
|
||||
|
||||
@@ -17,6 +17,8 @@ import 'rxjs/add/observable/of';
|
||||
import 'rxjs/add/operator/map';
|
||||
import { Store } from '@ngrx/store';
|
||||
|
||||
import { ClientRect } from '../../../dom';
|
||||
|
||||
import { MapperService } from '../../../services/mapper.service';
|
||||
|
||||
import {
|
||||
|
||||
8
shared/src/dom/client-rect.d.ts
vendored
Normal file
8
shared/src/dom/client-rect.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export declare interface ClientRect {
|
||||
bottom: number;
|
||||
readonly height: number;
|
||||
left: number;
|
||||
right: number;
|
||||
top: number;
|
||||
readonly width: number;
|
||||
}
|
||||
1
shared/src/dom/index.ts
Normal file
1
shared/src/dom/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { ClientRect } from './client-rect';
|
||||
Reference in New Issue
Block a user