Files
minecraft-plugin-manager/frontend/webapp/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock.js
2025-04-13 00:18:57 +02:00

19 lines
424 B
JavaScript

/**
* @flow
*/
import IdentifierMock from './IdentifierMock';
import type { IdentifierMockType } from './IdentifierMock';
export type JSXSpreadAttributeMockType = {
type: 'JSXSpreadAttribute',
argument: IdentifierMockType,
};
export default function JSXSpreadAttributeMock(identifier: string): JSXSpreadAttributeMockType {
return {
type: 'JSXSpreadAttribute',
argument: IdentifierMock(identifier),
};
}