fmt: apparently api.d.ts was out of sync with linter

This commit is contained in:
KernelDeimos
2025-12-09 19:09:25 -05:00
committed by Eric Dubé
parent e2ae313589
commit 2e4a504cda

2
extensions/api.d.ts vendored
View File

@@ -14,7 +14,7 @@ import type * as ExtensionControllerExports from './ExtensionController/src/Exte
declare global {
namespace Express {
interface Request {
services: { get: <T extends (keyof ServiceNameMap) | (string & {}) >(string: T) => T extends keyof ServiceNameMap ? ServiceNameMap[T] : unknown }
services: { get: <T extends (keyof ServiceNameMap) | (string & {})>(string: T) => T extends keyof ServiceNameMap ? ServiceNameMap[T] : unknown }
actor: Actor,
rawBody: Buffer,
/** @deprecated use actor instead */