@imgly/plugin-ai-image-generation-web
Version:
AI image generation plugin for the CE.SDK editor
19 lines (18 loc) • 570 B
TypeScript
export type { RunwareClient } from './createRunwareClient';
export type { RunwareProviderConfiguration } from './createImageProvider';
export declare const ASPECT_RATIO_MAP: Record<string, {
width: number;
height: number;
}>;
export declare const IMAGE_SIZE_MAP: Record<string, {
width: number;
height: number;
}>;
export declare function getImageDimensionsFromAspectRatio(aspectRatio: string): {
width: number;
height: number;
};
export declare function getImageDimensionsFromSize(imageSize: string): {
width: number;
height: number;
};