UNPKG

inklecate

Version:

A tiny wrapper around the desktop executables for ink's command-line Ink language compiler.

13 lines (10 loc) 224 B
import { ExecuteArgs, } from './types/ExecuteArgs'; import { InklecateReturn, } from './types/InklecateReturn'; declare function execute( args: ExecuteArgs, ): Promise<InklecateReturn>; export = execute;