summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/types.ts
blob: 8d337be42e25f952194b8a3eb1a7e6b17dcd372e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export interface ServerApi {
  readonly name: string
  readonly groups: readonly string[]
}

export interface OpenApiSpec {
  readonly openapi: string
  readonly info: {
    readonly title: string
    readonly version: string
    readonly description: string
  }
  readonly paths: Record<string, never>
}