UNPKG

on-codemerge

Version:

A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product

12 lines (11 loc) 281 B
export interface UploadEndpoints { upload?: string; download?: string; } export interface UploadConfig { endpoints?: UploadEndpoints; maxFileSize?: number; allowedTypes?: string[]; useEmulation?: boolean; } export declare const defaultConfig: UploadConfig;