mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
17663c1232
Original: c0390ade3d
25 lines
748 B
TypeScript
25 lines
748 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/** FormFile object */
|
|
export interface 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 */
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export function isFormFile(x: any): x is FormFile {
|
|
return (
|
|
typeof x === "object" &&
|
|
x.hasOwnProperty("filename") &&
|
|
x.hasOwnProperty("type")
|
|
);
|
|
}
|