mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
* Add enzyme-adapter-react-15 and enzyme-adapter-react-16 * Fix dtslint "Error: Unexpected compiler option ..." * Introduce EnzymeAdapter
15 lines
404 B
TypeScript
15 lines
404 B
TypeScript
// Type definitions for enzyme-adapter-react-15 1.0
|
|
// Project: https://github.com/airbnb/enzyme
|
|
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { EnzymeAdapter } from 'enzyme';
|
|
|
|
declare class ReactFifteenAdapter extends EnzymeAdapter {
|
|
}
|
|
|
|
declare namespace ReactFifteenAdapter {
|
|
}
|
|
|
|
export = ReactFifteenAdapter;
|