generated from erangel1/generic-template
initial commit. phase 1 complete
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
export type IdentifierMockType = {|
|
||||
type: 'Identifier',
|
||||
name: string,
|
||||
|};
|
||||
|
||||
export default function IdentifierMock(ident: string): IdentifierMockType {
|
||||
return {
|
||||
type: 'Identifier',
|
||||
name: ident,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user