mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
style(imports): add spaces in imports
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import {Component, Input, ViewEncapsulation} from '@angular/core';
|
||||
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
||||
|
||||
import {Config} from '../../config/config';
|
||||
import {InfiniteScroll} from './infinite-scroll';
|
||||
import { Config } from '../../config/config';
|
||||
import { InfiniteScroll } from './infinite-scroll';
|
||||
|
||||
|
||||
/**
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {Directive, Input, Output, EventEmitter, Host, NgZone, ElementRef} from '@angular/core';
|
||||
import { Directive, ElementRef, EventEmitter, Host, Input, NgZone, Output } from '@angular/core';
|
||||
|
||||
import {Content} from '../content/content';
|
||||
|
||||
@ -137,7 +137,7 @@ export class InfiniteScroll {
|
||||
* you must call the infinite scroll's `complete()` method when
|
||||
* your async operation has completed.
|
||||
*/
|
||||
@Output() ionInfinite: EventEmitter<InfiniteScroll> = new EventEmitter();
|
||||
@Output() ionInfinite: EventEmitter<InfiniteScroll> = new EventEmitter<InfiniteScroll>();
|
||||
|
||||
constructor(
|
||||
@Host() private _content: Content,
|
||||
|
Reference in New Issue
Block a user