astro-ghostcms/.pnpm-store/v3/files/f9/dce252770adbd49ca68465ade47...

16 lines
232 B
Plaintext

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