This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type definitions for Feathers | |
// Project: http://feathersjs.com/ | |
// Definitions by: Jack Guy <http://thatguyjackguy.com> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
import { Application, Handler, ErrorRequestHandler } from 'express'; | |
type HandlerArgument = Handler | Handler[]; | |
export = Feathers; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Directive, ViewChild, Inject, ContentChildren, QueryList, ContentChild, | |
ElementRef, Input, forwardRef, AfterViewInit, EventEmitter } from 'angular2/core'; | |
import { Subject } from 'rxjs'; | |
const imagesLoaded = require('imagesloaded'); | |
@Directive({ | |
selector: '[masonry-item]', | |
host: { | |
'[style.position]': 'position', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Injector} from 'angular2/core'; | |
let appInjectorRef: Injector; | |
export const appInjector = (injector?: Injector):Injector => { | |
if (injector) { | |
appInjectorRef = injector; | |
} | |
return appInjectorRef; | |
}; |
NewerOlder