IdentifierMock.js 232 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 /** * @flow */ export type IdentifierMockType = {| type: 'Identifier', name: string, |}; export default function IdentifierMock(ident: string): IdentifierMockType { return { type: 'Identifier', name: ident, }; }