mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-20 23:23:49 +00:00
Initial commit
This commit is contained in:
parent
2211ed7650
commit
ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions
|
|
@ -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: [],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue