Merge pull request #7724 from backstage/freben/core-types

introduce `@backstage/types`
This commit is contained in:
Fredrik Adelöw
2021-10-22 10:25:32 +02:00
committed by GitHub
29 changed files with 478 additions and 95 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/types';
import { JsonValue } from '@backstage/config';
import { JsonValue as JsonValue_2 } from '@backstage/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>,