UNPKG

@becomes/cms-cloud-client

Version:

SDK for accessing BCMS Cloud API

12 lines (11 loc) 382 B
import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; export type LimitType = 'string' | 'number'; export interface Limit extends FSDBEntity { name: string; description?: string; type: LimitType; svalue?: string; nvalue?: number; } export declare const LimitSchema: ObjectSchema;