astro-ghostcms/.pnpm-store/v3/files/91/a16e1104e2b17bce57eba127528...

18 lines
243 B
Plaintext

/**
* @flow
*/
export type JSXTextMockType = {|
type: 'JSXText',
value: string,
raw: string,
|};
export default function JSXTextMock(value: string): JSXTextMockType {
return {
type: 'JSXText',
value,
raw: value,
};
}