Type Alias MappedPrompts

MappedPrompts: {
    [T in PromptType]:
        | MappedPrompt<T, true, true>
        | MappedPrompt<T, true, false>
        | MappedPrompt<T, false, true>
        | MappedPrompt<T, false, false>
}