mirror of
https://github.com/sern-handler/automata
synced 2026-06-27 18:22:15 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
export interface FeedbackRequestBody {
|
|
turnstileToken?: string;
|
|
feedback: 'up' | 'down';
|
|
inputText?: string;
|
|
route: string;
|
|
}
|