Skip to content

Instantly share code, notes, and snippets.

View ntilwalli's full-sized avatar

Nikhil Tilwalli ntilwalli

View GitHub Profile
@ntilwalli
ntilwalli / cycle.d.ts
Created January 19, 2016 21:03
Incomplete Typescript definition files
declare module "@cycle/core" {
export interface DefinitionFunction<I, O> {
(drivers: I): O
}
export interface DriversDefinition {
[ driverName: string ]: Function
}