@cabloy/module-info 1.2.8 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interface.d.ts +2 -10
- package/package.json +1 -1
package/dist/interface.d.ts
CHANGED
|
@@ -73,12 +73,14 @@ export interface OnionSceneMeta {
|
|
|
73
73
|
optionsGlobalInterfaceFrom?: string;
|
|
74
74
|
scopeResource?: boolean;
|
|
75
75
|
beanGeneral?: boolean;
|
|
76
|
+
snippets?: string;
|
|
76
77
|
boilerplate?: string;
|
|
77
78
|
metadataCustom?: string;
|
|
78
79
|
}
|
|
79
80
|
export interface OnionMetaMeta {
|
|
80
81
|
module?: IModule;
|
|
81
82
|
scopeResource?: boolean;
|
|
83
|
+
snippets?: string;
|
|
82
84
|
boilerplate?: string;
|
|
83
85
|
metadataCustom?: string;
|
|
84
86
|
}
|
|
@@ -127,14 +129,4 @@ export interface IGlobBeanFile {
|
|
|
127
129
|
isIgnore: boolean;
|
|
128
130
|
isVirtual: boolean;
|
|
129
131
|
}
|
|
130
|
-
export interface IMetadataCustomGenerateOptions {
|
|
131
|
-
cli: unknown;
|
|
132
|
-
sceneName: string;
|
|
133
|
-
sceneNameCapitalize: string;
|
|
134
|
-
sceneMeta: OnionSceneMeta;
|
|
135
|
-
moduleName: string;
|
|
136
|
-
modulePath: string;
|
|
137
|
-
globFiles: IGlobBeanFile[];
|
|
138
|
-
}
|
|
139
|
-
export type TypeMetadataCustomGenerate = (options: IMetadataCustomGenerateOptions) => Promise<string>;
|
|
140
132
|
//# sourceMappingURL=interface.d.ts.map
|