@micrio/tiler-base
Version:
The base Micrio client-side tiler package used by the Micrio CLI and GUI tools
10 lines (9 loc) • 323 B
TypeScript
import type { FormatType, ImageType, State } from '../types.js';
/** Process all specified and upload them to Micrio */
export declare function upload(files: string[], opts: {
destination: string;
format: FormatType;
type: ImageType;
pdfScale: string;
account?: string;
}, state: State): Promise<void>;