Initial commit
This commit is contained in:
15
frontend/webapp/node_modules/eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js
generated
vendored
Normal file
15
frontend/webapp/node_modules/eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js
generated
vendored
Normal file
@ -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