fix(): changed slides so that it is using the default import.

This commit is contained in:
Josh Thomas
2017-05-02 14:11:04 -05:00
parent 53d7c24ddf
commit d18f2e591c
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import * as Swiper from 'swiper';
import { Component, h, Ionic, Prop } from '../index';
import Swiper from 'swiper';
/**
* @name Slides
@ -32,7 +32,7 @@ import { Component, h, Ionic, Prop } from '../index';
shadow: false
})
export class Slides {
swiper: Swiper;
swiper: any;
$el: HTMLElement;
/**

View File

@ -1,6 +1,7 @@
{
"compilerOptions": {
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
@ -26,4 +27,4 @@
"annotationsAs": "static fields",
"annotateForClosureCompiler": true
}
}
}