Skip to content

Commit c36bd75

Browse files
committed
small ref
1 parent f5c47de commit c36bd75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/integrations/requestdata.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ type RequestDataIntegrationOptions = {
1919
include?: RequestDataIncludeOptions;
2020
};
2121

22-
const DEFAULT_INCLUDE = {
22+
const DEFAULT_INCLUDE: RequestDataIncludeOptions = {
2323
cookies: true,
2424
data: true,
2525
headers: true,
2626
ip: false,
2727
query_string: true,
2828
url: true,
29-
} satisfies RequestDataIncludeOptions;
29+
};
3030

3131
const INTEGRATION_NAME = 'RequestData';
3232

0 commit comments

Comments
 (0)