You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
243 B
18 lines
243 B
2 years ago
|
/**
|
||
|
* @flow
|
||
|
*/
|
||
|
|
||
|
export type LiteralMockType = {|
|
||
|
type: 'Literal',
|
||
|
value: string,
|
||
|
raw: string,
|
||
|
|};
|
||
|
|
||
|
export default function LiteralMock(value: string): LiteralMockType {
|
||
|
return {
|
||
|
type: 'Literal',
|
||
|
value,
|
||
|
raw: value,
|
||
|
};
|
||
|
}
|