Files
lcbp3.np-dms.work/frontend/node_modules/eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js
2025-09-21 20:29:15 +07:00

16 lines
232 B
JavaScript
Executable File

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