chat.d.ts 215 B

1234567891011121314
  1. declare interface ApiList {
  2. "/txt_to_img": {
  3. params: {
  4. q?: string;
  5. };
  6. response: {
  7. errno: number;
  8. errmsg: string;
  9. data: {
  10. imgs: { url: string }[];
  11. };
  12. };
  13. };
  14. }