We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c72af5 commit dffebb4Copy full SHA for dffebb4
packages/types/src/index.ts
@@ -3,5 +3,6 @@ export * as Destination from './destination';
3
export * as Handler from './handler';
4
export * as Hooks from './hooks';
5
export * as Mapping from './mapping';
6
+export * as Request from './request';
7
export * as Schema from './schema';
8
export * as WalkerOS from './walkeros';
packages/types/src/request.ts
@@ -0,0 +1,10 @@
1
+export interface Context {
2
+ city?: string;
+ country?: string;
+ encoding?: string;
+ ip?: string;
+ language?: string;
+ origin?: string;
+ region?: string;
9
+ userAgent?: string;
10
+}
0 commit comments