Skip to content

Commit

Permalink
fix: πŸ› correct return type for mustache method to string
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Dec 22, 2024
1 parent 1c906df commit 69a412b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/types/prompt_template.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ interface Parsers {
* @param text template text
* @param data data to render
*/
mustache(text: string | WorkspaceFile, data: Record<string, any>): str
mustache(text: string | WorkspaceFile, data: Record<string, any>): string
/**
* Renders a jinja template
*/
Expand Down

0 comments on commit 69a412b

Please sign in to comment.