mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
546 B
TypeScript
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;
|
|
}
|
|
}
|
|
}
|