@circleci/circleci-config-sdk
Version:
An SDK for building CircleCI Configuration files with JavaScript.
21 lines • 458 B
TypeScript
import { OrbDisplayMeta } from '../types/Orb.types';
export interface OrbDefinition {
/**
* The name of this orb.
*/
name: string;
/**
* The namespace this orb belongs to.
*/
namespace: string;
/**
* The version of this orb.
*/
version: string;
description?: string;
/**
* The display metadata for this orb.
*/
display?: OrbDisplayMeta;
}
//# sourceMappingURL=OrbDefinition.d.ts.map