diff --git a/.github/workflows/check_ts.yml b/.github/workflows/check_ts.yml index 726b53ae..c1e895a9 100644 --- a/.github/workflows/check_ts.yml +++ b/.github/workflows/check_ts.yml @@ -6,6 +6,7 @@ permissions: write-all jobs: ts: runs-on: ubuntu-latest + permissions: write-all steps: - uses: actions/checkout@v3 - name: Get diff lines diff --git a/sphinx_js/js/ir.ts b/sphinx_js/js/ir.ts index d38813de..ea61b5a1 100644 --- a/sphinx_js/js/ir.ts +++ b/sphinx_js/js/ir.ts @@ -134,7 +134,7 @@ export type _MembersAndSupers = { export type Interface = TopLevel & _MembersAndSupers & { type_params: TypeParam[]; - kind: "interface"; + kind: "interfaces"; }; export type Class = TopLevel &