Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
ensaremirerol committed Jan 4, 2025
1 parent bf5b066 commit 50c0af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/lib/api/yarrrml_service/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class YARRRMLService {
const writer = new Writer();
writer.addQuads(quads);
return new Promise((resolve, reject) => {
writer.end((error, result) => {
writer.end((error: Error | null, result: string) => {
if (error) {
reject(error);
} else {
Expand Down

0 comments on commit 50c0af2

Please sign in to comment.