@azure/functions
Version:
Microsoft Azure Functions NodeJS Framework
18 lines (14 loc) • 491 B
text/typescript
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License.
export const version = '3.6.0';
export enum HeaderName {
contentType = 'content-type',
contentDisposition = 'content-disposition',
}
export enum MediaType {
multipartForm = 'multipart/form-data',
multipartPrefix = 'multipart/',
urlEncodedForm = 'application/x-www-form-urlencoded',
octetStream = 'application/octet-stream',
json = 'application/json',
}