huoshan/huoshan.ts

11 lines
307 B
TypeScript
Raw Normal View History

2024-10-02 17:35:29 +08:00
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 ""}