/**
 * Scopes object
 *
 * Lists the available scopes for an OAuth2 security scheme.
 *
 * @see {@link https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md#scopes-object}
 */
export type Oauth2ScopesObject = {
  [key: string]: string
}
