9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
export interface ValidationResult {
|
|
valid: boolean;
|
|
conformanceLevel?: string;
|
|
structureErrors?: string[];
|
|
pdfErrors?: string[];
|
|
}
|
|
|
|
export type FileContent = Uint8Array | Blob | File;
|