chore: scaffolder api report

Signed-off-by: Zander Franks <zander@zanderf.net>
This commit is contained in:
Zander Franks
2023-05-03 18:19:09 -05:00
parent d2727a2eb0
commit 8c444f37d8
+8
View File
@@ -217,6 +217,13 @@ export type ScaffolderOutputLink = {
entityRef?: string;
};
// @public (undocumented)
export type ScaffolderOutputText = {
title?: string;
icon?: string;
data?: string;
};
// @public
export interface ScaffolderScaffoldOptions {
// (undocumented)
@@ -261,6 +268,7 @@ export type ScaffolderTask = {
// @public (undocumented)
export type ScaffolderTaskOutput = {
links?: ScaffolderOutputLink[];
text?: ScaffolderOutputText[];
} & {
[key: string]: unknown;
};