UNPKG

eslint-plugin-jsx-a11y

Version:

Static AST checker for accessibility rules on JSX elements.

18 lines (15 loc) 243 B
/** * @flow */ export type JSXTextMockType = {| type: 'JSXText', value: string, raw: string, |}; export default function JSXTextMock(value: string): JSXTextMockType { return { type: 'JSXText', value, raw: value, }; }