13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
import { RequestContext } from './index.js';
|
|
|
|
declare global {
|
|
namespace App {
|
|
export interface Platform {
|
|
/**
|
|
* `context` is only available in Edge Functions
|
|
*/
|
|
context?: RequestContext;
|
|
}
|
|
}
|
|
}
|