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 @@ -11,6 +11,7 @@ export interface IncludeDefinitionConfig {
11
11
helpers ?: boolean ;
12
12
partials ?: boolean ;
13
13
actionTypes ?: boolean ;
14
+ actionTypeDisplays ?: boolean ;
14
15
}
15
16
16
17
export type IncludeDefinition = boolean | string [ ] | IncludeDefinitionConfig ;
@@ -46,6 +47,8 @@ export interface NodePlopAPI {
46
47
47
48
setActionType ( name : string , fn : CustomActionFunction ) : void ;
48
49
50
+ setActionTypeDisplay ( name : string , typeDisplay : string ) : void ;
51
+
49
52
/**
50
53
* This does not include a `CustomActionConfig` for the same reasons
51
54
* Listed in the `ActionType` declaration. Please see that JSDoc for more
@@ -54,6 +57,10 @@ export interface NodePlopAPI {
54
57
55
58
getActionTypeList ( ) : string [ ] ;
56
59
60
+ getActionTypeDisplay ( name : string ) : string ;
61
+
62
+ getActionTypeDisplayList ( ) : string [ ] ;
63
+
57
64
setPlopfilePath ( filePath : string ) : void ;
58
65
59
66
getPlopfilePath ( ) : string ;
You can’t perform that action at this time.
0 commit comments