Skip to content

add missing properties #28

add missing properties

add missing properties #28

Workflow file for this run

name: Update Docs
on:
push:
paths:
- "index.ts"
jobs:
run_scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Typedoc
uses: actions/setup-node@v2
with:
node-version: "18"
- run: npm i && npm run docs
- name: Commit and push changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "docs: Updated Docs"
git push