UNPKG

eslint-config-lemon

Version:

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

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