UNPKG

@becomes/cms-cloud-client

Version:

SDK for accessing BCMS Cloud API

12 lines (11 loc) 379 B
import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface Feature extends FSDBEntity { name: string; nameEncoded: string; available: boolean; description?: string; releaseDate?: number; instances?: string[]; } export declare const FeatureSchema: ObjectSchema;