MCPcopy
hub / github.com/erictik/midjourney-api / MJMessage

Interface MJMessage

src/interfaces/message.ts:1–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface MJMessage {
2 uri: string;
3 proxy_url?: string;
4 content: string;
5 flags: number;
6 id?: string;
7 hash?: string;
8 progress?: string;
9 options?: MJOptions[];
10 width?: number;
11 height?: number;
12}
13
14export type LoadingHandler = (uri: string, progress: string) => void;
15export type OnModal = (nonce: string, id: string) => Promise<string>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected