1
0

types.ts 155 B

12345678910111213
  1. export interface Config {
  2. api: {
  3. prefix: string
  4. }
  5. http: {
  6. host: string
  7. port: number
  8. }
  9. }
  10. export interface Context {
  11. config: Config
  12. }