// Name: AI Image Prompt Generator
// Description: Generate customized AI image prompts with style options
// Author: canvural
import "@johnlindquist/kit"
interface PromptStyle {
name: string
prefix: string
suffix: string
description: string
}
interface GeneratedPrompt {
prompt: string
style: string
subject: string
}
const promptStyles: PromptStyle[] = [