mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-10 01:19:53 +01:00
11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
import type { IFlagResolver } from '../../../types/index.js';
|
|
|
|
export const FEAUTRE_LINK_COUNT = 'feature_link_count';
|
|
|
|
export const defineImpactMetrics = (flagResolver: IFlagResolver) => {
|
|
flagResolver.impactMetrics?.defineCounter(
|
|
FEAUTRE_LINK_COUNT,
|
|
'Count of feature links',
|
|
);
|
|
};
|