Skip to content

Commit

Permalink
Merge pull request #903 from yashoswalyo/update-config
Browse files Browse the repository at this point in the history
chore: add type definitions to package.json for better TS support
  • Loading branch information
deshmukhmayur authored Mar 10, 2025
2 parents 5a79716 + b93c767 commit b3fa593
Show file tree
Hide file tree
Showing 3 changed files with 6,665 additions and 10,153 deletions.
12 changes: 6 additions & 6 deletions packages/opc-feedback/declaration.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
declare module '*.scss';
declare module "*.json";
declare module '*.json';
// Add your type definitions here

type ErrorList = {
name: string
}
name: string;
};

type ExperienceList = {
name: string;
assetUrl: string;
}
};

type TemplateView = {
feedbackFAB: string;
Expand All @@ -30,9 +30,9 @@ type TemplateView = {
confirmationSubTitle: string;
experienceList: ExperienceList[];
errorList: ErrorList[];
}
};

type Application = {
name?: string;
url?: string;
}
};
Loading

0 comments on commit b3fa593

Please sign in to comment.