Variable activationKeyConst
activationKey: {
segment: (
fields: Omit<SegmentIdKey, "type">,
) => Tagged<{ type: "segment_id"; segment_id: string }, "segment_id">;
keyValue: (
fields: Omit<KeyValueKey, "type">,
) => Tagged<{ type: "key_value"; key: string; value: string }, "key_value">;
} = ...
Type Declaration
Readonlysegment: (
fields: Omit<SegmentIdKey, "type">,
) => Tagged<{ type: "segment_id"; segment_id: string }, "segment_id">
ReadonlykeyValue: (
fields: Omit<KeyValueKey, "type">,
) => Tagged<{ type: "key_value"; key: string; value: string }, "key_value">
Grouped accessor for both
ActivationKeyvariants.