UNPKG

kmidjourney

Version:

Node.js client for the unofficial MidJourney API.

13 lines (12 loc) 260 B
export interface Message { text: string; img: string; } export interface MJMessage { id: string; uri: string; hash: string; content: string; progress?: string; } export type LoadingHandler = (uri: string, progress: string) => void;