Initial commit

This commit is contained in:
Brian Beck 2025-09-11 16:56:30 -07:00
parent 2211ed7650
commit ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions

View file

@ -91,7 +91,10 @@ export function parseMissionScript(script) {
const doc = parser.parse(script);
let section = { name: null, definitions: [] };
const mission = {
const mission: {
pragma: Record<string, string>;
sections: Array<{ name: string | null; definitions: any[] }>;
} = {
pragma: {},
sections: [],
};