Files
DefinitelyTyped/types/ng-flow/index.d.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

18 lines
485 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
// TypeScript Version: 2.3
/// <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;
}
}
}