Files
automata/util/types.ts

7 lines
142 B
TypeScript

export interface FeedbackRequestBody {
turnstileToken?: string;
feedback: 'up' | 'down';
inputText?: string;
route: string;
}