goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
24 lines • 908 B
TypeScript
import { default as React } from 'react';
import { ProjectBoardStyles } from '../../../../theme';
import { Task, RawTopic, RawSeverityLevel, RawStatus, RawSubStatus, RawCompany, RawCustomer, RawProduct, RawService, RawRegion, RawArticle } from '../../types';
interface InlineAddTaskProps {
onAdd: (newTask: Omit<Task, '_id'>) => void;
onCancel: () => void;
topics: RawTopic[];
severityLevels: RawSeverityLevel[];
statuses: RawStatus[];
subStatuses: RawSubStatus[];
createdUserId: string;
companyId: string;
customerId: string;
rawCompanies: RawCompany[];
rawCustomers: RawCustomer[];
rawProducts: RawProduct[];
rawServices: RawService[];
rawRegions: RawRegion[];
knowledgebaseArticles?: RawArticle[];
styles: ProjectBoardStyles;
}
export declare const InlineAddTask: React.FC<InlineAddTaskProps>;
export {};
//# sourceMappingURL=inline.d.ts.map