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

18 lines
243 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* @flow
*/
export type LiteralMockType = {|
type: 'Literal',
value: string,
raw: string,
|};
export default function LiteralMock(value: string): LiteralMockType {
return {
type: 'Literal',
value,
raw: value,
};
}