diff options
Diffstat (limited to 'src/build.ts')
-rw-r--r-- | src/build.ts | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/build.ts b/src/build.ts index 94022dc..19c6141 100644 --- a/src/build.ts +++ b/src/build.ts @@ -3,10 +3,18 @@ import * as yaml from "https://deno.land/x/js_yaml_port/js-yaml.js" // the structure of the front matter interface PolicyYFM { - name: string + name: string; description: string; aliases?: string[]; - ignore?: boolean; + ignore?: boolean; + autoupdate?: { + forums?: { + forum?: number; + topic?: number; + post: number; + }; + wiki?: string; + }; } const decoder = new TextDecoder("utf-8"); |