astro-ghostcms/.pnpm-store/v3/files/90/e819e5f43b564a65b8bfbd6cb10...

16 lines
295 B
Plaintext

/**
* @flow
*/
export type JSXExpressionContainerMockType = {
type: 'JSXExpressionContainer',
expression: mixed,
}
export default function JSXExpressionContainerMock(exp: mixed): JSXExpressionContainerMockType {
return {
type: 'JSXExpressionContainer',
expression: exp,
};
}