File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export interface IncludeDefinitionConfig {
26
26
helpers ?: boolean ;
27
27
partials ?: boolean ;
28
28
actionTypes ?: boolean ;
29
+ actionTypeDisplays ?: boolean ;
29
30
}
30
31
31
32
export type IncludeDefinition = boolean | string [ ] | IncludeDefinitionConfig ;
@@ -61,6 +62,8 @@ export interface NodePlopAPI {
61
62
62
63
setActionType ( name : string , fn : CustomActionFunction ) : void ;
63
64
65
+ setActionTypeDisplay ( name : string , typeDisplay : string ) : void ;
66
+
64
67
/**
65
68
* This does not include a `CustomActionConfig` for the same reasons
66
69
* Listed in the `ActionType` declaration. Please see that JSDoc for more
@@ -69,6 +72,10 @@ export interface NodePlopAPI {
69
72
70
73
getActionTypeList ( ) : string [ ] ;
71
74
75
+ getActionTypeDisplay ( name : string ) : string ;
76
+
77
+ getActionTypeDisplayList ( ) : string [ ] ;
78
+
72
79
setPlopfilePath ( filePath : string ) : void ;
73
80
74
81
getPlopfilePath ( ) : string ;
You can’t perform that action at this time.
0 commit comments