UNPKG

@opra/common

Version:

Opra common package

14 lines (13 loc) 344 B
import type { DataTypeContainer } from './data-type-container.interface.js'; import type { Transport } from './types.js'; /** * @interface Api */ export interface Api extends DataTypeContainer { transport: Transport; /** * Name of the api. Should be a computer-friendly name */ name: string; description?: string; }