Spaces:
Running
Running
File size: 232 Bytes
6a37520 |
1 2 3 4 5 6 7 |
import type { CreateImageRequest, ImagesResponse } from "openai";
export type ChatImageRequest = CreateImageRequest;
export type ChatImagesResponse = ImagesResponse;
export type Updater<T> = (updater: (value: T) => void) => void;
|