fix api report

Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
aramissennyeydd
2024-12-26 13:51:24 -07:00
parent 54e7bd9a35
commit e6b480badc
7 changed files with 54 additions and 5 deletions
@@ -14,12 +14,19 @@
* limitations under the License.
*/
/** @internal */
type Target = string | { internal: string; external: string };
/**
* @alpha
*/
export interface BackstageInstance {
url: Target;
}
/**
* @alpha
*/
export interface SystemMetadataService {
listInstances(): Promise<BackstageInstance[]>;
}