mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-13 12:37:16 +08:00
13 lines
439 B
TypeScript
13 lines
439 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 path="../flowjs/flowjs.d.ts" />
|
|
/// <reference path="../angularjs/angular.d.ts" />
|
|
|
|
declare namespace angular.flow {
|
|
interface IFlowFactory {
|
|
create(options?: flowjs.IFlowOptions): flowjs.IFlow;
|
|
}
|
|
}
|