import { EggCore, type MiddlewareFunc } from '@eggjs/core'; import { JSONPConfig } from '../../types.js'; export default class JSONPApplication extends EggCore { /** * return a middleware to enable jsonp response. * will do some security check inside. * @public */ jsonp(initOptions?: Partial): MiddlewareFunc; }