DefinitelyTyped/types/ng-flow/index.d.ts
2019-04-09 21:45:09 +02:00

19 lines
546 B
TypeScript

// Type definitions for ng-flow
// Project: https://github.com/flowjs/ng-flow
// Definitions by: Ryan McNamara <https://github.com/ryan10132>
// Martin Nuc <https://github.com/martinnuc>
// 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;
}
}
}