refactor: remove useless comment

This commit is contained in:
antv 2024-08-01 17:17:27 +08:00
parent 5a577971bc
commit 01855cb602

View File

@ -55,12 +55,10 @@ export interface MinimapOptions extends BasePluginOptions {
* @remarks
* <zh/>
* - 'key' 使
* - 'symbol' 使
* - id
*
* <en/>
* - 'key' uses the key shape of the element as the thumbnail graphic
* - 'symbol' uses a fixed shape to represent the element
* - You can also pass in a function that receives the id and type of the element and returns a shape
*/
shape?: 'key' | ((id: string, elementType: ElementType) => DisplayObject);