Skip to main content
This release is 18 versions behind 5.0.12 — the latest version of @lost-c3/lib. Jump to latest

Lost for easy making Construct 3 Addons.

This package works with DenoIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
35%
Published
4 months ago (3.3.2)
Package root>lib>index.ts
import type { Addon } from "./addon.ts"; import type { AddonType, LostConfig } from "./config.ts"; export function defineConfig<T extends AddonType>(config: LostConfig<T>) { return config; } export function defineAddon<T extends Addon<AddonType, any, any>>(addon: T) { return addon; }