![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@types/content-disposition
Advanced tools
TypeScript definitions for content-disposition
npm install --save @types/content-disposition
This package contains type definitions for content-disposition (https://github.com/jshttp/content-disposition).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/content-disposition.
declare namespace contentDisposition {
/**
* Class for parsed Content-Disposition header for v8 optimization
*/
interface ContentDisposition {
/**
* The disposition type (always lower case)
*/
type: "attachment" | "inline" | string;
/**
* An object of the parameters in the disposition
* (name of parameter always lower case and extended versions replace non-extended versions)
*/
parameters: { [key: string]: string };
}
interface Options {
/**
* Specifies the disposition type.
* This can also be "inline", or any other value (all values except `inline` are treated like attachment,
* but can convey additional information if both parties agree to it).
* The `type` is normalized to lower-case.
* @default 'attachment'
*/
type?: "attachment" | "inline" | string | undefined;
/**
* If the filename option is outside ISO-8859-1,
* then the file name is actually stored in a supplemental field for clients
* that support Unicode file names and a ISO-8859-1 version of the file name is automatically generated
* @default true
*/
fallback?: string | boolean | undefined;
}
/**
* Parse a Content-Disposition header string
*/
function parse(contentDispositionHeader: string): ContentDisposition;
}
/**
* Create an attachment `Content-Disposition` header value using the given file name, if supplied.
* The `filename` is optional and if no file name is desired, but you want to specify options, set `filename` to undefined.
*/
declare function contentDisposition(filename?: string, options?: contentDisposition.Options): string;
export = contentDisposition;
These definitions were written by Stefan Reichel, and Piotr Błażejewicz.
FAQs
TypeScript definitions for content-disposition
We found that @types/content-disposition demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.