11 lines
307 B
TypeScript
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 ""}
|