UNPKG

polen

Version:

A framework for delightful GraphQL developer portals

18 lines 531 B
import type { Config } from '#api/config/index'; import type { NavbarItem } from '#api/content/navbar'; import type { Schema } from './api/schema/index.js'; export interface ProjectData { schema: null | Schema.Schema; basePath: string; paths: Config.Config[`paths`][`project`]; navbar: NavbarItem[]; server: { port: number; static: { directory: string; route: string; }; }; warnings: Config.Config[`warnings`]; } //# sourceMappingURL=project-data.d.ts.map