zcash-grant-system/frontend/types/rfp.ts

21 lines
440 B
TypeScript
Raw Normal View History

import { Proposal } from './proposal';
import { RFP_STATUS } from 'api/constants';
2019-02-08 11:02:34 -08:00
import { Zat } from 'utils/units';
export interface RFP {
id: number;
2019-03-13 22:06:02 -07:00
urlId: string;
title: string;
brief: string;
content: string;
status: RFP_STATUS;
acceptedProposals: Proposal[];
2019-02-08 11:02:34 -08:00
bounty: Zat | null;
matching: boolean;
dateOpened: number;
dateClosed?: number;
dateCloses?: number;
authedLiked: boolean;
likesCount: number;
}