Files
DefinitelyTyped/types/ng-flow/index.d.ts
2017-03-24 14:27:52 -07:00

17 lines
458 B
TypeScript

// Type definitions for ng-flow
// Project: https://github.com/flowjs/ng-flow
// Definitions by: Ryan McNamara <https://github.com/ryan10132>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="flowjs" />
/// <reference types="angular" />
import * as angular from 'angular';
declare module 'angular' {
export namespace flow {
interface IFlowFactory {
create(options?: flowjs.IFlowOptions): flowjs.IFlow;
}
}
}