diff --git a/src/runtime/action/index.ts b/src/runtime/action/index.ts index 9c5d752f66..388f6f040e 100644 --- a/src/runtime/action/index.ts +++ b/src/runtime/action/index.ts @@ -28,7 +28,12 @@ export interface ActionReturn = Record> { update?: (parameter: Parameter) => void; destroy?: () => void; - $$attributes?: Attributes; + /** + * ### DO NOT USE THIS + * This exists solely for type-checking and has no effect at runtime. + * Set this through the `Attributes` generic instead. + */ + $$_attributes?: Attributes; } /**