1
0
mirror of https://github.com/fluencelabs/aqua.git synced 2025-04-04 05:01:05 +00:00
2023-08-09 17:32:27 +03:00

21 lines
374 B
JavaScript

//@ts-check
import { compileAquaCallFromPath } from '@fluencelabs/aqua-api'
// compile call
const compilationResult = await compileAquaCallFromPath({
filePath: 'test.aqua',
data: { num: 3 },
funcCall: 'getNumber(num)',
})
const {
errors,
functionCall: { funcDef, script },
functions,
generatedSources,
services,
} = compilationResult
console.log(script)