File size: 447 Bytes
4e23b01 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import type {
FlagDefinitionInput,
FlagId,
} from '@moonshot-ai/agent-core-v2/app/flag/flagRegistry';
export type {
ExperimentalFeatureState,
ExperimentalFlagMap,
ExperimentalFlagSource,
} from '@moonshot-ai/agent-core-v2/app/flag/flag';
export type {
FlagDefinitionInput,
FlagId,
FlagSurface,
} from '@moonshot-ai/agent-core-v2/app/flag/flagRegistry';
export type FlagDefinition = FlagDefinitionInput & { readonly id: FlagId };
|