-
-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(formula): supplement sheet and sheets formula #3859
Conversation
View Deployment
|
Playwright test resultsDetails 19 tests across 9 suites |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #3859 +/- ##
==========================================
+ Coverage 31.95% 31.98% +0.02%
==========================================
Files 2351 2353 +2
Lines 121311 121359 +48
Branches 26857 26865 +8
==========================================
+ Hits 38764 38812 +48
Misses 82547 82547 ☔ View full report in Codecov by Sentry. |
@@ -98,6 +98,11 @@ export interface IFormulaCurrentConfigService { | |||
getClearDependencyTreeCache(): IDirtyUnitSheetNameMap; | |||
|
|||
getLocale(): LocaleType; | |||
|
|||
getSheetsInfo(): { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can define an interface for
{
sheetOrder: string[];
sheetNameMap: { [sheetId: string]: string };
}
Pull Request Checklist