mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-25 17:23:50 +03:00
18 lines
228 B
PHP
18 lines
228 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
/**
|
|
export type ValueNode = VariableNode
|
|
| IntValueNode
|
|
| FloatValueNode
|
|
| StringValueNode
|
|
| BooleanValueNode
|
|
| EnumValueNode
|
|
| ListValueNode
|
|
| ObjectValueNode
|
|
*/
|
|
interface ValueNode
|
|
{
|
|
|
|
}
|