You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.0 KiB

4 months ago
export declare enum ExtensionCategory {
/**
* <zh/>
*
* <en/> Node element
*/
NODE = "node",
/**
* <zh/>
*
* <en/> Edge element
*/
EDGE = "edge",
/**
* <zh/>
*
* <en/> Combination element
*/
COMBO = "combo",
/**
* <zh/>
*
* <en/> Theme
*/
THEME = "theme",
/**
* <zh/>
*
* <en/> Palette
*/
PALETTE = "palette",
/**
* <zh/>
*
* <en/> Layout
*/
LAYOUT = "layout",
/**
* <zh/>
*
* <en/> Behavior
*/
BEHAVIOR = "behavior",
/**
* <zh/>
*
* <en/> Plugin
*/
PLUGIN = "plugin",
/**
* <zh/>
*
* <en/> Animation
*/
ANIMATION = "animation",
/**
* <zh/>
*
* <en/> Data transform
*/
TRANSFORM = "transform",
/**
* <zh/>
*
* <en/> Shape
*/
SHAPE = "shape"
}