auth0
Version:
Auth0 Node.js SDK for the Management API v2.
11 lines (10 loc) • 351 B
TypeScript
import type { Uploadable } from "./types.js";
export declare function toBinaryUploadRequest(file: Uploadable): Promise<{
body: Uploadable.FileLike;
headers?: Record<string, string>;
}>;
export declare function toMultipartDataPart(file: Uploadable): Promise<{
data: Uploadable.FileLike;
filename?: string;
contentType?: string;
}>;