Initial commit
This commit is contained in:
17
frontend/webapp/node_modules/eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js
generated
vendored
Normal file
17
frontend/webapp/node_modules/eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
export type LiteralMockType = {|
|
||||
type: 'Literal',
|
||||
value: string,
|
||||
raw: string,
|
||||
|};
|
||||
|
||||
export default function LiteralMock(value: string): LiteralMockType {
|
||||
return {
|
||||
type: 'Literal',
|
||||
value,
|
||||
raw: value,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user