import type { PageShieldScriptResponse } from './PageShieldScriptResponse'; /** * @type PageShieldScriptEnvelope: * * @property data: * */ export type PageShieldScriptEnvelope = { data: PageShieldScriptResponse; } & { [key: string]: any; };