mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
// Type definitions for enzyme-adapter-react-15 1.0
|
|
// Project: https://github.com/airbnb/enzyme, http://airbnb.io/enzyme
|
|
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
|
// Jordan Harband <https://github.com/ljharb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.1
|
|
|
|
import { EnzymeAdapter } from 'enzyme';
|
|
|
|
declare class ReactFifteenAdapter extends EnzymeAdapter {
|
|
}
|
|
|
|
declare namespace ReactFifteenAdapter {
|
|
}
|
|
|
|
export = ReactFifteenAdapter;
|