1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-08 15:05:18 +02:00

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>;
}