new types and classes

This commit is contained in:
PwLDev 2026-05-04 11:38:58 -07:00
commit 9a3a1b084a
26 changed files with 1324 additions and 2 deletions

14
lib/milsko.ts Normal file
View file

@ -0,0 +1,14 @@
// @ts-ignore
import binding from "node-gyp-build";
import { join } from "node:path";
import {
BaseWidgetConstructor,
MwNativeClasses,
PixmapConstructor
} from "./types";
export const BaseWidget: BaseWidgetConstructor = binding.BaseWidget;
export const NativeClasses: MwNativeClasses = binding.Classes;
export const Pixmap: PixmapConstructor = binding.Pixmap;
export default binding(join(__dirname, ".."));