File tree Expand file tree Collapse file tree 6 files changed +38
-2
lines changed Expand file tree Collapse file tree 6 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
1
+ import { scaffolderModule } from './module' ;
2
+ export { createAnsibleControllerJobTemplateLaunchAction } from './launch' ;
3
+ export default scaffolderModule ;
Original file line number Diff line number Diff line change
1
+ import { DiscoveryApi } from '@backstage/core-plugin-api' ;
2
+ import { RootConfigService } from '@backstage/backend-plugin-api' ;
3
+ /**
4
+ * Creates an `ansible-controller:job_template:launch` Scaffolder action.
5
+ *
6
+ * @remarks
7
+ *
8
+ * See {@link https://example.com} for more information.
9
+ *
10
+ * @public
11
+ */
12
+ export declare function createAnsibleControllerJobTemplateLaunchAction ( options : {
13
+ discovery : DiscoveryApi ;
14
+ config : RootConfigService ;
15
+ } ) : import ( "@backstage/plugin-scaffolder-node" ) . TemplateAction < {
16
+ controller : string ;
17
+ job_template : string ;
18
+ extra_vars : any ;
19
+ } , import ( "@backstage/types" ) . JsonObject > ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * A backend module that registers the action into the scaffolder
3
+ */
4
+ export declare const scaffolderModule : import ( "@backstage/backend-plugin-api" ) . BackendFeatureCompat ;
Original file line number Diff line number Diff line change
1
+ export * from './ansible-controller' ;
Original file line number Diff line number Diff line change
1
+ /***/
2
+ /**
3
+ * The ansible-controller module for @backstage/plugin-scaffolder-backend.
4
+ *
5
+ * @packageDocumentation
6
+ */
7
+ export * from './actions' ;
8
+ import { BackendDynamicPluginInstaller } from '@backstage/backend-dynamic-feature-service' ;
9
+ export declare const dynamicPluginInstaller : BackendDynamicPluginInstaller ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "outDir" : " ./dist-types" ,
3
+ "outDir" : " ./dist-types/src " ,
4
4
"declaration" : true ,
5
- "declarationDir" : " ./dist-types" ,
5
+ "declarationDir" : " ./dist-types/src " ,
6
6
"emitDeclarationOnly" : true ,
7
7
"skipLibCheck" : true
8
8
}
You can’t perform that action at this time.
0 commit comments