UNPKG

@storm-stack/plugin-system

Version:

A library used to create and manage a plugin-styled architecture in a TypeScript application.

4 lines (3 loc) 222 B
import { type ExecaReturnValue } from "execa"; export declare const execute: (command: string, rootPath: string) => Promise<ExecaReturnValue<string>>; export declare const install: (name: string, rootPath: string) => any;