introduce core-types

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-10-21 09:45:32 +02:00
parent 00da5e919f
commit 41c49884d2
27 changed files with 350 additions and 89 deletions
+3 -1
View File
@@ -15,7 +15,9 @@ import { createPullRequest } from 'octokit-plugin-create-pull-request';
import { Entity } from '@backstage/catalog-model';
import express from 'express';
import { JsonObject } from '@backstage/config';
import { JsonObject as JsonObject_2 } from '@backstage/core-types';
import { JsonValue } from '@backstage/config';
import { JsonValue as JsonValue_2 } from '@backstage/core-types';
import { LocationSpec } from '@backstage/catalog-model';
import { Logger as Logger_2 } from 'winston';
import { Octokit } from '@octokit/rest';
@@ -183,7 +185,7 @@ export function createRouter(options: RouterOptions): Promise<express.Router>;
// @public (undocumented)
export const createTemplateAction: <
Input extends Partial<{
[name: string]: JsonValue | Partial<JsonObject> | undefined;
[name: string]: JsonValue_2 | Partial<JsonObject_2> | undefined;
}>,
>(
templateAction: TemplateAction<Input>,