thep0y opened a new issue #16035:
URL: https://github.com/apache/echarts/issues/16035


   ### What problem does this feature solve?
   I want to use the interface `PieDataItemOption` to define an array, but 
`PieDataItemOption` is not an exportable interface.
   ```typescript
   const data: echarts.PieDataItemOption[] = []
   ```
   This issue is not only for `PieDataItemOption`, almost most of the options 
are not exportable.
   
   ### What does the proposed API look like?
   now:
   ```typescript
   interface PieDataItemOption extends 
OptionDataItemObject<OptionDataValueNumeric>, PieStateOption, 
StatesOptionMixin<PieStateOption, ExtraStateOption> {
       cursor?: string;
   }
   ```
   
   proposed:
   ```typescript
   export interface PieDataItemOption extends 
OptionDataItemObject<OptionDataValueNumeric>, PieStateOption, 
StatesOptionMixin<PieStateOption, ExtraStateOption> {
       cursor?: string;
   }
   ```
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. DO NOT REMOVE -->


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to