UNPKG

@imgly/plugin-ai-video-generation-web

Version:

AI video generation plugin for the CE.SDK editor

29 lines (28 loc) 1.04 kB
import { Veo31Text2Video } from './Veo31.text2video'; import { Veo31Image2Video } from './Veo31.image2video'; import { Veo31FastText2Video } from './Veo31Fast.text2video'; import { Veo31FastImage2Video } from './Veo31Fast.image2video'; import { Sora2Text2Video } from './Sora2.text2video'; import { Sora2Image2Video } from './Sora2.image2video'; import { Sora2ProText2Video } from './Sora2Pro.text2video'; import { Sora2ProImage2Video } from './Sora2Pro.image2video'; declare const Runware: { Veo31: { Text2Video: typeof Veo31Text2Video; Image2Video: typeof Veo31Image2Video; }; Veo31Fast: { Text2Video: typeof Veo31FastText2Video; Image2Video: typeof Veo31FastImage2Video; }; Sora2: { Text2Video: typeof Sora2Text2Video; Image2Video: typeof Sora2Image2Video; }; Sora2Pro: { Text2Video: typeof Sora2ProText2Video; Image2Video: typeof Sora2ProImage2Video; }; }; export default Runware; export type { RunwareProviderConfiguration } from './types';