UNPKG

dtk-z3-solver-deno-v2

Version:

This directory contains JavaScript code to automatically derive TypeScript bindings for the C API, which are published on npm as [z3-solver](https://www.npmjs.com/package/z3-solver).

7 lines (6 loc) 288 B
import { Z3HighLevel } from './high-level'; import { Z3LowLevel } from './low-level'; export * from './high-level/types'; export { Z3Core, Z3LowLevel } from './low-level'; export * from './low-level/types.__GENERATED__'; export declare function init(): Promise<Z3LowLevel & Z3HighLevel>;