superdesk/superdesk-client-core

View on GitHub
scripts/superdesk-interfaces/ArticleSchema.ts

Summary

Maintainability
A
0 mins
Test Coverage

export interface IArticleSchema {
    [field: string]: {
        type: string;
        required: boolean;
        minlength: number;
        maxlength: number;
    };
}