types.ts 228 B

123456789101112
  1. /**
  2. * Configuration options for the GraphiQL plugin.
  3. */
  4. export interface GraphiqlPluginOptions {
  5. /**
  6. * @description
  7. * The route to the GraphiQL UI.
  8. *
  9. * @default 'graphiql'
  10. */
  11. route?: string;
  12. }