@voiceflow/base-types
Version:
Voiceflow base project types
8 lines • 314 B
TypeScript
import type { NodeType } from './constants.js';
import type { StepData } from './flow.js';
import type { BaseStep } from './utils/index.js';
export { StepData } from './flow.js';
export interface Step<Data = StepData> extends BaseStep<Data> {
type: NodeType.COMPONENT;
}
//# sourceMappingURL=component.d.ts.map