1 | import { Request, Response } from 'express';
|
2 | import { MiddlewareOptions } from 'graphql-playground-html';
|
3 | export declare type ExpressPlaygroundMiddleware = (req: Request, res: Response, next: () => void) => void;
|
4 | export declare type Register = (options: MiddlewareOptions) => ExpressPlaygroundMiddleware;
|
5 | declare const express: Register;
|
6 | export default express;
|