Skip to content

OpenSpecContact

@tsed/openspec

Usage

typescript
import { OpenSpecContact } from "@tsed/openspec";

See /packages/specs/openspec/src/types/common/OpenSpecInfo.ts.

Overview

ts
interface OpenSpecContact {
    name?: string;
    email?: string;
    url?: string;
}

name

ts
name?: string;

The identifying name of the contact person/organization.

email

ts
email?: string;

The email address of the contact person/organization. MUST be in the format of an email address.

url

ts
url?: string;

The URL pointing to the contact information. MUST be in the format of a URL.

Released under the MIT License.