UNPKG

@opra/common

Version:
25 lines (24 loc) 507 B
import type { DataType } from './data-type/data-type.interface.js'; /** * * @interface Value */ export interface Value { /** * Data type of the value */ type?: DataType.Name | DataType; /** * Indicates if the value is an array * @deprecated */ isArray?: boolean; /** * Defines the description of the parameter */ description?: string; /** * Defines example values for the parameter */ examples?: any[] | Record<string, any>; }