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
declare module "feathers" { | |
import { Application, Handler, ErrorRequestHandler } from 'express'; | |
type HandlerArgument = Handler | Handler[]; | |
function Feathers(): Feathers.FeathersApp; | |
export = Feathers; | |
namespace 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
var path = require('path'); | |
var assign = require('object-assign'); | |
// Functions for resolving all the aliases | |
// Currently only resolves folder names in the `client` directory | |
var path_base = path.resolve(__dirname, '../'); | |
const resolve = path.resolve; | |
const base = function() { | |
var args = [path_base]; | |
args.push.apply(args, arguments); |
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
class BaseViewController: UIViewController { | |
// MARK: - Observers | |
// MARK: View Trigger Observers | |
private let viewWillAppearObserver: Signal<Void, NoError>.Observer | |
private let viewDidAppearObserver: Signal<Void, NoError>.Observer | |
private let viewWillDisappearObserver: Signal<Void, NoError>.Observer | |
private let viewDidDisappearObserver: Signal<Void, NoError>.Observer |
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 UIKit | |
import Foundation | |
import ReactiveCocoa | |
import Result | |
import Dwifft | |
/** | |
Encapsulates information about collection view nib/cell registration. | |
- Nib: UINib. |
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 mimeTypes from 'mime-types'; | |
import Proto from 'uberproto'; | |
import { parseDataURI } from 'dauria'; | |
import { bufferToHash, fromBuffer } from '../utils/buffer'; | |
export default class Service { | |
constructor(options) { | |
if (typeof options === 'undefined') { | |
throw new Error('blob-service: constructor `options` must be provided'); | |
} |
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
// | |
// ReactiveAnimation.swift | |
// Created by Brendan Conron on 2/12/16. | |
// | |
import Foundation | |
import UIKit | |
import ReactiveCocoa | |
extension UIViewAnimationCurve { |