declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
13 lines (12 loc) • 432 B
TypeScript
import { DomainObject } from 'domain-objects';
import Joi from 'joi';
export interface ActionDeclarePracticesConfigInput {
declare: {
examples?: string;
'use-cases': string;
practices: string;
};
}
export declare class ActionDeclarePracticesConfigInput extends DomainObject<ActionDeclarePracticesConfigInput> implements ActionDeclarePracticesConfigInput {
static schema: Joi.ObjectSchema<any>;
}