@builder.io/dev-tools 1.18.41-dev.202512091131.53e860cfb → 1.18.41-dev.202512092152.3aa64f0ef

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.
@@ -2,7 +2,7 @@ import type { ContentMessageItemImage } from "$/ai-utils";
2
2
  import type { DevToolsSys } from "../../types";
3
3
  export interface GifGeneratorOptions {
4
4
  framerate?: number;
5
- outputPath?: string;
5
+ outputPath: string;
6
6
  cleanup?: boolean;
7
7
  sys?: DevToolsSys;
8
8
  maxWidth?: number;
@@ -39,7 +39,7 @@ export declare class GifGenerator {
39
39
  * @param options Generation options
40
40
  * @returns Path to the generated GIF file
41
41
  */
42
- generateGif(options?: GifGeneratorOptions): Promise<string>;
42
+ generateGif(options: GifGeneratorOptions): Promise<string>;
43
43
  /**
44
44
  * Manually cleanup if needed (useful for non-cleanup mode)
45
45
  */
@@ -52,4 +52,4 @@ export declare class GifGenerator {
52
52
  * @param options Generation options
53
53
  * @returns Path to the generated GIF file, or null if generation failed
54
54
  */
55
- export declare function generateGifFromImages(images: ContentMessageItemImage[], options?: GifGeneratorOptions): Promise<string | null>;
55
+ export declare function generateGifFromImages(images: ContentMessageItemImage[], options: GifGeneratorOptions): Promise<string | null>;