MCPcopy
hub / github.com/Peppermint-Lab/peppermint / FeatureFlag

Interface FeatureFlag

apps/client/pages/settings/flags.tsx:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { useEffect, useState } from "react";
3
4interface FeatureFlag {
5 name: string;
6 enabled: boolean;
7 description: string;
8 flagKey: string;
9}
10
11const defaultFlags: FeatureFlag[] = [
12 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected