mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
33f62789cd
Original: fda9c98d05
24 lines
678 B
TypeScript
24 lines
678 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/** FormFile object */
|
|
export type FormFile = {
|
|
/** filename */
|
|
filename: string;
|
|
/** content-type header value of file */
|
|
type: string;
|
|
/** byte size of file */
|
|
size: number;
|
|
/** in-memory content of file. Either content or tempfile is set */
|
|
content?: Uint8Array;
|
|
/** temporal file path. Set if file size is bigger than specified max-memory size at reading form */
|
|
tempfile?: string;
|
|
};
|
|
|
|
/** Type guard for FormFile */
|
|
export function isFormFile(x): x is FormFile {
|
|
return (
|
|
typeof x === "object" &&
|
|
x.hasOwnProperty("filename") &&
|
|
x.hasOwnProperty("type")
|
|
);
|
|
}
|