mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 13:36:30 +03:00
14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import { join } from 'path'
|
|
import * as url from 'url'
|
|
|
|
/**
|
|
* bindings are not typed yet.
|
|
* if the available function names are required they can be found inside of `../src/module.c`
|
|
*/
|
|
import build from 'node-gyp-build'
|
|
export const bindings: any = build(
|
|
join(url.fileURLToPath(new URL('.', import.meta.url)), '../')
|
|
)
|
|
|
|
export default bindings
|