OS3SecurityBase
@tsed/openspec
Usage
typescript
import { OS3SecurityBase } from "@tsed/openspec";
See /packages/specs/openspec/src/types/openspec3/OS3Security.ts.
Overview
ts
interface OS3SecurityBase {
type: "apiKey" | "oauth2" | "http" | "openIdConnect";
description?: string;
}
type
ts
type: "apiKey" | "oauth2" | "http" | "openIdConnect";
The type of the security scheme
description
ts
description?: string;