xiao
初始化
6a37520
raw
history blame
232 Bytes
import type { CreateImageRequest, ImagesResponse } from "openai";
export type ChatImageRequest = CreateImageRequest;
export type ChatImagesResponse = ImagesResponse;
export type Updater<T> = (updater: (value: T) => void) => void;