ugcinc 2.57.0 → 2.58.0
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/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -378,13 +378,13 @@ export interface ImageEditorConfig extends BaseEditorConfig {
|
|
|
378
378
|
export type ImageEditorElement = RemotionImageEditorElement;
|
|
379
379
|
export type ImageEditorNodeConfig = RemotionImageEditorNodeConfig;
|
|
380
380
|
export type DimensionPresetKey = RemotionDimensionPresetKey;
|
|
381
|
-
export interface ImageEditorNodeInput {
|
|
381
|
+
export interface ImageEditorNodeInput extends Record<string, unknown> {
|
|
382
382
|
type: 'image-editor';
|
|
383
383
|
config: ImageEditorNodeConfig;
|
|
384
384
|
imageUrls: Record<string, string>;
|
|
385
385
|
textValues: Record<string, string>;
|
|
386
386
|
}
|
|
387
|
-
export interface ImageEditorNodeOutput {
|
|
387
|
+
export interface ImageEditorNodeOutput extends Record<string, unknown> {
|
|
388
388
|
output: string;
|
|
389
389
|
width: number;
|
|
390
390
|
height: number;
|