UNPKG

picgo

Version:

A tool for image uploading

7 lines (6 loc) 358 B
import type { Hono } from 'hono'; import type { IPicGo } from '../../types'; import type { IServerUploadAdapter } from '../../types/internal'; type GetUploadAdapter = () => IServerUploadAdapter | undefined; declare const registerCoreRoutes: (app: Hono<any, any, any>, ctx: IPicGo, getUploadAdapter?: GetUploadAdapter) => void; export { registerCoreRoutes };