@builder.io/dev-tools 1.18.41-dev.202512091131.53e860cfb → 1.18.41-dev.202512091903.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.
- package/cli/index.cjs +61 -27
- package/cli/index.cjs.map +2 -2
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/utils/gif-generator.d.ts +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -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
|
|
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
|
|
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
|
|
55
|
+
export declare function generateGifFromImages(images: ContentMessageItemImage[], options: GifGeneratorOptions): Promise<string | null>;
|