IdentifierMock.js 232 B

123456789101112131415
  1. /**
  2. * @flow
  3. */
  4. export type IdentifierMockType = {|
  5. type: 'Identifier',
  6. name: string,
  7. |};
  8. export default function IdentifierMock(ident: string): IdentifierMockType {
  9. return {
  10. type: 'Identifier',
  11. name: ident,
  12. };
  13. }