This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/config.d.ts

14 lines
282 B
TypeScript

import { Variable } from "./src/types/properties/value.ts"
export interface Config {
compiler?: {
enabled?: boolean
linked?: boolean
}
packinfo?: {
name?: string
description?: string
version?: [number, number, number]
}
global_variables?: Record<Variable, string>
}