mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 08:12:40 +10:00
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import { CertificateAuthority } from "./internal/clients/ca";
|
|
import { MetadataHandler } from "./internal/metadata";
|
|
import { ObjectBackend } from "./internal/objects";
|
|
import { SessionHandler } from "./internal/session";
|
|
|
|
export * from "h3";
|
|
declare module "h3" {
|
|
interface H3EventContext {
|
|
ca: CertificateAuthority;
|
|
objects: ObjectBackend;
|
|
}
|
|
}
|
|
|
|
export type MinimumRequestObject = { headers: Headers };
|