Global Feed Post Login
Replying to BigB

interface BusinessPlan {

company: {

name: string;

description: string;

};

goals: {

mission: string;

vision: string;

values: string[];

};

products: {

name: string;

description: string;

}[];

market: {

analysis: string;

targetMarket: string;

};

financials: {

budget: number;

funding: number;

};

}

01
BigB 1y ago

console.log(JSON.stringify(businessPlan, null, 2));

Reply to this note

Please Login to reply.

Discussion

No replies yet.