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