UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

13 lines 374 B
import type { NodeType } from './constants'; import type { BaseNode, BaseStep, NodeNextID } from './utils'; export interface StepData { url: string; } export interface Step<Data = StepData> extends BaseStep<Data> { type: NodeType.URL; } export interface Node extends BaseNode, NodeNextID { type: NodeType.URL; url: string; } //# sourceMappingURL=url.d.ts.map