Files
novarix.uk/node_modules/eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

16 lines
232 B
JavaScript

/**
* @flow
*/
export type IdentifierMockType = {|
type: 'Identifier',
name: string,
|};
export default function IdentifierMock(ident: string): IdentifierMockType {
return {
type: 'Identifier',
name: ident,
};
}