Skip to content

Commit

Permalink
feat: add type definitions for typescript (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-nhs authored Jan 29, 2024
1 parent fbf6f01 commit 8bc10bb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/validator.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export function validateXML(
xml: string | ReadableStream | { file: string },
pathToXsd: string
): Promise<{
valid: boolean;
result: string;
messages: string[];
}>;

0 comments on commit 8bc10bb

Please sign in to comment.