UNPKG

srt-validator

Version:
10 lines (9 loc) 248 B
import ErrorCode from './error-code'; import { ValidatorType } from './types'; declare type ValidationError = { errorCode: ErrorCode; message: string; lineNumber: number; validator: ValidatorType; }; export default ValidationError;