import Layout from '../components/Layout' import SEO from '../components/SEO' import { getLua, Documentation, filterDesc } from '../utils/doc-utils' import Docs from '../components/Docs' import { getSearchIndex, SearchIndex } from '../utils/search' export interface LuaProps { lua: Documentation searchIndex: SearchIndex } export default function Lua(props: LuaProps) { return (

Lua API

) } export async function getStaticProps() { const lua = filterDesc(getLua()) const searchIndex = getSearchIndex() return { props: { lua, searchIndex } } }