UNPKG

inklecate

Version:

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

14 lines (11 loc) 303 B
import { InklecateArgs, } from './types/InklecateArgs'; import { InklecateReturn, } from './types/InklecateReturn'; declare function inklecate(args: string): Promise<InklecateReturn>; declare function inklecate( args: InklecateArgs, ): Promise<InklecateReturn>; export = inklecate;