UNPKG

@dooor-ai/trust

Version:

TEE Attestation and Confidential Computing utilities for Dooor OS

9 lines (8 loc) 327 B
import type { INestApplication } from '@nestjs/common'; import { IKmsService } from '../core/services/tee-kms.service'; export interface AttachToNestOptions { prefix?: string; audience: string; kmsService: IKmsService; } export declare function attachToNest(app: INestApplication, opts: AttachToNestOptions): void;