Created
March 7, 2022 19:23
-
-
Save larkintuckerllc/c96927af1f5b1bb96f88075a2e940b6c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createApiRef } from '@backstage/core-plugin-api'; | |
export interface MyPluginApi { | |
getHealth(): Promise<{ status: string; }>; | |
} | |
export const myPluginApiRef = createApiRef<MyPluginApi>({ | |
id: 'plugin.my-plugin.service', | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment