web 3d图形渲染器
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.

10 lines
136 B

  1. /**
  2. * @flow
  3. */
  4. export default function LiteralMock(value: string) {
  5. return {
  6. type: 'Literal',
  7. value,
  8. raw: value,
  9. };
  10. }