UNPKG

talkshitgetdared

Version:

The truth will hurt. An open-source cursed-core engine for Truth & Dare prompts.

12 lines 428 B
type DifficultyLevel = 'easy' | 'medium' | 'hard' | 'extreme'; type PromptCategory = 'personal' | 'embarrassing' | 'relationships' | 'funny' | 'physical' | 'social' | 'intimate' | 'confession'; interface Prompt { id: string; text: string; contributor: string; difficulty: DifficultyLevel; category: PromptCategory; } export declare const truthPrompts: Prompt[]; export {}; //# sourceMappingURL=truth.d.ts.map