OS3Flow
@tsed/openspec
Usage 
typescript
import { OS3Flow } from "@tsed/openspec";Overview 
ts
interface OS3Flow {
    refreshUrl?: string;
    scopes: {
        [key: string]: string;
    };
}refreshUrl 
ts
refreshUrl?: string;The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL.
scopes 
ts
scopes: {
     [key: string]: string;
 };The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it.