fix: missing typedef

This commit is contained in:
ShareVB 2024-08-25 21:52:53 +02:00
parent e9ac8f5a79
commit adb0249f29

View file

@ -0,0 +1,7 @@
declare module "chatgpt-prompt-splitter" {
export default function promptSplitter(options: {
prompt: string
splitLength: number
newLine: boolean
}): Array<string>;
}