@getanthill/datastore
Version:
Event-Sourced Datastore
35 lines (34 loc) • 725 B
TypeScript
import type { ModelConfig } from '../../../typings';
export declare const properties: {
is_enabled: {
description: string;
type: string;
};
scope: {
description: string;
minItems: number;
type: string;
items: {
type: string;
description: string;
pattern: string;
};
};
name: {
description: string;
type: string;
pattern: string;
};
value: {
description: string;
anyOf: {
type: string;
}[];
};
description: {
description: string;
type: string;
};
};
declare const modelConfig: ModelConfig;
export default modelConfig;