mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* Make ts3.1 the default for ng-flow The 3.0-and-below-code isn't needed now that 3.1 is the lowest version supported by DT. * restore header * add dt-header exemption * Make ts3.1 the default * restore missing header
17 lines
502 B
TypeScript
17 lines
502 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
|
|
/// <reference types="flowjs" />
|
|
|
|
import * as angular from 'angular';
|
|
|
|
declare module 'angular' {
|
|
namespace flow {
|
|
interface FlowFactory {
|
|
create(options?: flowjs.FlowOptions): flowjs.Flow;
|
|
}
|
|
}
|
|
}
|