summaryrefslogtreecommitdiff
path: root/std/multipart/formfile.ts
diff options
context:
space:
mode:
authorNayeem Rahman <muhammed.9939@gmail.com>2020-01-10 19:29:09 +0000
committerRy Dahl <ry@tinyclouds.org>2020-01-10 12:29:09 -0700
commit9d5f0f2d23b40470c557c50257ca792e6cd1595c (patch)
treeab9b893722f72cb1a7a7413c9d19f953ff8c1370 /std/multipart/formfile.ts
parentc4e8ed3c44d645ba9b788e7bf6d1bf98840079a6 (diff)
Remove std/multipart (#3647)
since it overlaps with std/mime/multipart
Diffstat (limited to 'std/multipart/formfile.ts')
-rw-r--r--std/multipart/formfile.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/std/multipart/formfile.ts b/std/multipart/formfile.ts
deleted file mode 100644
index 0f7a3eb15..000000000
--- a/std/multipart/formfile.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { hasOwnProperty } from "../util/has_own_property.ts";
-
-/** 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 hasOwnProperty(x, "filename") && hasOwnProperty(x, "type");
-}