mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import type { TriggerProps } from 'rc-trigger';
|
|
import * as React from 'react';
|
|
|
|
// We export context here is to avoid testing-lib inject `afterEach` in `tests/index.test.js`
|
|
// Which breaks the circle deps
|
|
export const TriggerMockContext = React.createContext<
|
|
| (Partial<TriggerProps> & {
|
|
mock?: boolean;
|
|
})
|
|
| undefined
|
|
>(undefined);
|