@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 359 B
TypeScript
/** Extras information about a field */
export interface FieldInformation {
/** Name of the field concerned by restrictions */
fieldName: string;
/** Indicates if the field is mandatory when editing */
mandatory: boolean;
/** Indicates if the field can't be edited */
readOnly: boolean;
}
//# sourceMappingURL=FieldInformation.d.ts.map