@voiceflow/base-types
Version:
Voiceflow base project types
17 lines • 398 B
TypeScript
import type { Nullable } from '@voiceflow/common';
import type { Variable } from './common.js';
export interface SlotType {
value?: string;
}
export interface Slot {
key: string;
name: string;
type: SlotType;
color?: string;
inputs: string[];
}
export interface SlotMapping {
slot: Nullable<string>;
variable: Nullable<Variable>;
}
//# sourceMappingURL=slot.d.ts.map