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