UNPKG

eslint-config-lemon

Version:

<div align="center"> <br> <img width="400" src="logo.svg"> <br> <br> </div>

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, }; }