Dashboard scenes: Export isExpressionReference to be accessible from scenes (#85228)

Export isExpressionRef to be accessible from scenes
This commit is contained in:
Oscar Kilhed
2024-03-27 12:35:06 +01:00
committed by GitHub
parent 6248bdda48
commit b7156ef2c2
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -17,6 +17,7 @@ export {
type HealthCheckResultDetails,
HealthStatus,
type StreamOptionsProvider,
isExpressionReference,
} from './utils/DataSourceWithBackend';
export {
toDataQueryResponse,
@@ -43,7 +43,7 @@ export const ExpressionDatasourceRef = Object.freeze({
});
/**
* @internal
* @public
*/
export function isExpressionReference(ref?: DataSourceRef | string | null): boolean {
if (!ref) {