Initial 智念AIGC platform

This commit is contained in:
inman
2026-05-29 10:26:02 +08:00
commit f9c3393f84
86 changed files with 14741 additions and 0 deletions

11
types/ali-oss.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
declare module "ali-oss" {
type PutOptions = {
mime?: string;
headers?: Record<string, string>;
};
export default class OSS {
constructor(options: Record<string, unknown>);
put(name: string, file: Buffer | Uint8Array, options?: PutOptions): Promise<unknown>;
}
}