(u: unknown)
| 66 | |
| 67 | /** @internal */ |
| 68 | export const isPrompt = (u: unknown): u is Prompt.Prompt<unknown> => |
| 69 | typeof u === "object" && u != null && PromptTypeId in u |
| 70 | |
| 71 | const allTupled = <const T extends ArrayLike<Prompt.Prompt<any>>>(arg: T): Prompt.Prompt< |
| 72 | { |