UNPKG

eslint-plugin-jsx-a11y

Version:

Static AST checker for accessibility rules on JSX elements.

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