api reference
API Reference
Current public web routes and stable interfaces in this documentation project.
Routes
/landing page./docs/:slugdocumentation article route./architecturearchitecture showcase./resourcesdownloadable asset index.
Docs frontmatter schema
type DocSection =
| 'getting-started'
| 'core-concepts'
| 'architecture'
| 'api-reference'
| 'contributing';
interface DocMeta {
title: string;
description: string;
order: number;
section: DocSection;
}