UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 445 B
import { Config } from '../option/Config'; import { OptionTypePostEnum } from '../../OptionTypePostEnum'; /** Option details */ export interface Option { /** Option configuration */ config?: Config; /** Enable / Disable the option */ enabled: boolean; /** Option name */ name: string; /** Url pattern */ pattern?: string; /** Option type */ type: OptionTypePostEnum; } //# sourceMappingURL=Option.d.ts.map