promptgun 0.11.6 → 0.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -2
package/build/index.d.ts
CHANGED
|
@@ -965,7 +965,7 @@ export declare class ImageFilePrompt implements Promise<File> {
|
|
|
965
965
|
private fileName;
|
|
966
966
|
private aiClient;
|
|
967
967
|
constructor(prompt: string, _model: OpenaiImageModelId | undefined, _imageSize: ImageSize | undefined, fileName: string, aiClient: AIClient);
|
|
968
|
-
then<TResult1 = File, TResult2 = never>(onfulfilled?: ((value:
|
|
968
|
+
then<TResult1 = File, TResult2 = never>(onfulfilled?: ((value: File) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined): Promise<TResult1 | TResult2>;
|
|
969
969
|
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null | undefined): Promise<File | TResult>;
|
|
970
970
|
finally(onfinally?: (() => void) | null | undefined): Promise<File>;
|
|
971
971
|
get [Symbol.toStringTag](): string;
|