mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-26 09:33: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
|
||
|
{
|
||
|
|
||
|
}
|