astro-ghostcms/.pnpm-store/v3/files/b3/eee600878777db45f48551829df...

18 lines
243 B
Plaintext

/**
* @flow
*/
export type LiteralMockType = {|
type: 'Literal',
value: string,
raw: string,
|};
export default function LiteralMock(value: string): LiteralMockType {
return {
type: 'Literal',
value,
raw: value,
};
}