huoshan/huoshan.ts
2024-10-02 17:35:29 +08:00

11 lines
307 B
TypeScript

export default {
image: {
text2image,
image2image,
readImage
}
}
function text2image(prompt:string, option?:Object):string {return ""}
function image2image(image:string[], prompt:string, option?:Object):string {return ""}
function readImage(path:string):string {return ""}