import { VariableDefinition } from './variables'; /** * External variable definition that can be provided from an external source. * Multiple external variable definitions can be provided to a dashboard, and * the order of the sources is important as first one will take precedence on * the following ones, in case they have same names. */ export interface ExternalVariableDefinition { /** * Source identifier for this set of external variables */ source: string; /** * Optional tooltip information for the external variables */ tooltip?: { title?: string; description?: string; }; /** * Optional link to edit these external variables */ editLink?: string; /** * The variable definitions from this external source */ definitions: VariableDefinition[]; } //# sourceMappingURL=external-variable.d.ts.map