📄 IdentifierMock.js
/home/palash/git/site/node_modules/eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js
Language: js • Lines: 15
/**
 * @flow
 */

export type IdentifierMockType = {|
  type: 'Identifier',
  name: string,
|};

export default function IdentifierMock(ident: string): IdentifierMockType {
  return {
    type: 'Identifier',
    name: ident,
  };
}