mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
fix: rawFile supports arrayBuffer (#277)
This commit is contained in:
parent
4a0a9ae130
commit
20b68bf97e
@ -22,7 +22,7 @@ export interface ApiHandlerInternalOptions extends MakeRequired<ApiHandlerOption
|
|||||||
|
|
||||||
export interface RawFile {
|
export interface RawFile {
|
||||||
contentType?: string;
|
contentType?: string;
|
||||||
data: Buffer | Uint8Array | boolean | number | string;
|
data: ArrayBuffer | Buffer | Uint8Array | boolean | number | string;
|
||||||
key?: string;
|
key?: string;
|
||||||
filename: string;
|
filename: string;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user