DefinitelyTyped/types/ng-flow/index.d.ts
Nathan Shively-Sanders bae359ed88
Make ts3.1 the default for ng-flow and google-cloud__tasks (#46937)
* 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
2020-08-21 08:02:21 -07:00

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;
}
}
}