- import { Observable } from 'rxjs';
- import Parse from 'parse';
- import { DalleOptions } from './imagine-func';
- export declare class ImagineWork {
- id: string;
- task: Parse.Object | null;
- progress: number;
- images: Array<string>;
- constructor(id?: string);
- fetchTask(): Promise<Parse.Object<Parse.Attributes>>;
- draw(options: DalleOptions): Observable<Parse.Object>;
- }
|