unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
12 lines • 381 B
TypeScript
import type { ReleasePlanMilestone } from './release-plan-milestone.js';
export interface ReleasePlanTemplate {
id: string;
discriminator: 'template';
name: string;
description?: string | null;
createdByUserId: number;
createdAt: string;
milestones?: ReleasePlanMilestone[];
archivedAt?: string;
}
//# sourceMappingURL=release-plan-template.d.ts.map