UNPKG

create-next-flask

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