UNPKG

@modyo/cli

Version:

Modyo CLI Command line to expose local development tools

8 lines (7 loc) 354 B
import { WidgetUpdateConfig } from './update-widget'; import type { WidgetResources } from './update-widget-from-resources'; interface WidgetUploadOptions { readonly publish: boolean; } export default function uploadWidget(name: string, resources: WidgetResources, config: WidgetUpdateConfig, options: WidgetUploadOptions): Promise<void>; export {};