Remove local declare var and using declaration file

This commit is contained in:
mauriziovitale84
2016-10-18 21:15:02 +01:00
parent 79988f421d
commit c2db58babb
5 changed files with 0 additions and 11 deletions

View File

@@ -19,9 +19,6 @@ import { Directive, OnInit, ElementRef, Input, Output, EventEmitter } from '@ang
import { RaphaelBase } from './raphael-base';
import { RaphaelService } from './raphael.service';
declare let Raphael: any;
declare let Polyline: any;
@Directive({selector: 'raphael-flow-arrow'})
export class RaphaelFlowArrowDirective extends RaphaelBase implements OnInit {
@Input()

View File

@@ -17,8 +17,6 @@
import { Injectable } from '@angular/core';
declare let Raphael: any;
@Injectable()
export class RaphaelService {

View File

@@ -18,8 +18,6 @@
import { Component } from '@angular/core';
import { WidgetComponent } from './../widget.component';
declare var componentHandler;
@Component({
moduleId: module.id,
selector: 'checkbox-widget',

View File

@@ -20,8 +20,6 @@ import { AbstractControl, FormGroup, FormBuilder, FormControl, Validators } from
import { WidgetComponent } from './../widget.component';
import * as moment from 'moment';
declare let mdDateTimePicker: any;
function dateCheck(c: AbstractControl) {
let startDate = moment(c.get('startDate').value);
let endDate = moment(c.get('endDate').value);

View File

@@ -17,8 +17,6 @@
import { Input, AfterViewInit, Output, EventEmitter, SimpleChanges, OnChanges } from '@angular/core';
declare var componentHandler;
/**
* Base widget component.
*/