mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 18:43:21 +08:00
12 lines
376 B
TypeScript
12 lines
376 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/borisyankov/DefinitelyTyped
|
|
/// <reference path="../flowjs/flowjs.d.ts" />
|
|
|
|
declare module ng.flow {
|
|
interface IFlowFactory {
|
|
create(options?: flowjs.IFlowOptions): flowjs.IFlow;
|
|
}
|
|
}
|