import type { NodeType } from './constants.js'; import type { BaseNode, BaseStep, NodeRequiredNextID } from './utils/index.js'; export interface StepData { directive: string; } export interface Step extends BaseStep { type: NodeType.DIRECTIVE; } export interface Node extends BaseNode, NodeRequiredNextID { type: NodeType.DIRECTIVE; directive: string; } //# sourceMappingURL=directive.d.ts.map