import { Pbi } from '../types/projectPbi.type'; export interface SprintTimelineOptions { sprint?: boolean; member?: boolean; } export type PbiPut = Omit; export interface PBIOptionsQueryParams { pbi: boolean; } interface OptionLabelValue { label: string; value: string; } export interface PBIOptionsResponse { status: number; message: string; data: PBIOptions; } export interface PBIOptions { pbi: OptionLabelValue[]; } export {};