Files
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

16 lines
232 B
JavaScript

/**
* @flow
*/
export type IdentifierMockType = {|
type: 'Identifier',
name: string,
|};
export default function IdentifierMock(ident: string): IdentifierMockType {
return {
type: 'Identifier',
name: ident,
};
}