UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

10 lines 408 B
import type { AnyRecord, EmptyObject, Nullable } from '@voiceflow/common'; import type { NodeType } from './constants.js'; import type { BaseStep } from './utils/index.js'; export interface StepData { domainID: Nullable<string>; } export interface Step<Data extends AnyRecord = StepData> extends BaseStep<Data, EmptyObject, []> { type: NodeType.GOTO_DOMAIN; } //# sourceMappingURL=goToDomain.d.ts.map