17 lines
326 B
PHP
17 lines
326 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Automattic\WooCommerce\Vendor\GraphQL\Language\AST;
|
|
|
|
/**
|
|
* export type ValueNode = VariableNode
|
|
* | NullValueNode
|
|
* | IntValueNode
|
|
* | FloatValueNode
|
|
* | StringValueNode
|
|
* | BooleanValueNode
|
|
* | EnumValueNode
|
|
* | ListValueNode
|
|
* | ObjectValueNode.
|
|
*/
|
|
interface ValueNode {}
|