@dooor-ai/trust
Version:
TEE Attestation and Confidential Computing utilities for Dooor OS
9 lines (8 loc) • 314 B
TypeScript
import { Application } from 'express';
import { IKmsService } from '../core/services/tee-kms.service';
export interface AttachToExpressOptions {
prefix?: string;
audience: string;
kmsService: IKmsService;
}
export declare function attachToExpress(app: Application, opts: AttachToExpressOptions): void;