@uppy/companion
Version:
OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:
16 lines (15 loc) • 591 B
TypeScript
export function setMaskables(maskables: any[]): void;
export function setProcessName(newProcessName: any): void;
export function info(msg: string, tag?: string, traceId?: string): void;
export function warn(msg: string, tag?: string, traceId?: string): void;
export function error(msg: string | Error, tag?: string, traceId?: string): void;
export function debug(msg: string, tag?: string, traceId?: string): void;
/**
* message log
*/
export type styleText = typeof util.styleText;
/**
* message log
*/
export type Colors = Parameters<styleText>[0];
import util = require("node:util");