UNPKG

@becomes/cms

Version:

Simple CMS for building APIs.

11 lines (10 loc) 196 B
import { Prop } from './prop.interface'; export interface PropChanges { name: { old: string; new: string; }; required: boolean; remove?: boolean; add?: Prop; }