(update) docs

This commit is contained in:
kakkokari-gtyih 2023-12-13 23:14:14 +09:00
parent ef45939008
commit b85328d6da
2 changed files with 7 additions and 18 deletions

View File

@ -0,0 +1,7 @@
# エンドポイント一覧
:::tip
現在、エンドポイント一覧は準備中です。提供が開始されるまでの間は、各Misskeyサーバーで [`/api-doc` ページ](x-mi-web://api-doc)にアクセスするか、[Misskeyのソースコード](https://github.com/misskey-dev/misskey/tree/develop/packages/backend/src/server/api/endpoints)を参照してください。
:::

View File

@ -1,18 +0,0 @@
<template>
<div>
{{ keys }}
</div>
</template>
<script setup lang="ts">
import { Endpoints } from 'misskey-js';
function getEndpointKeys<T extends Record<string, unknown>>(obj: T): Array<keyof T> {
return Object.keys(obj) as Array<keyof T>;
}
const keys = getEndpointKeys({} as Endpoints)
</script>
<style scoped>
</style>