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

44 lines
826 B
TypeScript

import { User, TeamMember } from './user';
import { SocialAccountMap, SOCIAL_TYPE, SocialInfo } from './social';
import { CreateFormState } from './create';
import { Comment, UserComment } from './comment';
import {
MILESTONE_STATE,
Milestone,
ProposalMilestone,
CreateMilestone,
} from './milestone';
import { Update } from './update';
import {
Contributor,
CrowdFund,
Proposal,
ProposalWithCrowdFund,
ProposalComments,
ProposalUpdates,
UserProposal,
} from './proposal';
export {
User,
UserComment,
UserProposal,
TeamMember,
SocialAccountMap,
SOCIAL_TYPE,
SocialInfo,
CreateFormState,
CreateMilestone,
Contributor,
MILESTONE_STATE,
Milestone,
ProposalMilestone,
CrowdFund,
Proposal,
ProposalWithCrowdFund,
Comment,
ProposalComments,
Update,
ProposalUpdates,
};