mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 11:37:02 -04:00
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { Readable } from 'stream';
|
|
|
|
// Type from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/multer/index.d.ts
|
|
export interface MulterFile {
|
|
/** Name of the form field associated with this file. */
|
|
fieldname: string;
|
|
/** Name of the file on the uploader's computer. */
|
|
originalname: string;
|
|
/**
|
|
* Value of the `Content-Transfer-Encoding` header for this file.
|
|
* @deprecated since July 2015
|
|
* @see RFC 7578, Section 4.7
|
|
*/
|
|
encoding: string;
|
|
/** Value of the `Content-Type` header for this file. */
|
|
mimetype: string;
|
|
/** Size of the file in bytes. */
|
|
size: number;
|
|
/**
|
|
* A readable stream of this file. Only available to the `_handleFile`
|
|
* callback for custom `StorageEngine`s.
|
|
*/
|
|
stream: Readable;
|
|
/** `DiskStorage` only: Directory to which this file has been uploaded. */
|
|
destination: string;
|
|
/** `DiskStorage` only: Name of this file within `destination`. */
|
|
filename: string;
|
|
/** `DiskStorage` only: Full path to the uploaded file. */
|
|
path: string;
|
|
/** `MemoryStorage` only: A Buffer containing the entire file. */
|
|
buffer: Buffer;
|
|
}
|