renamed flowjs/flow/* to flowjs/* and flowjs/ng-flow/* to ng-flow/*

This commit is contained in:
Ryan McNamara
2015-09-17 11:24:00 -07:00
parent 4a86ba7d7f
commit b8a280ebbb
4 changed files with 1 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
/// <reference path="ng-flow.d.ts" />
var flowFactory: ng.flow.IFlowFactory;
flowFactory.create(<flowjs.IFlowOptions> {});
+11
View File
@@ -0,0 +1,11 @@
// 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;
}
}