forked from github/plane
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import { IProjectLite, IWorkspaceLite } from "types";
|
|
|
|
export interface IGptResponse {
|
|
response: string;
|
|
response_html: string;
|
|
count: number;
|
|
project_detail: IProjectLite;
|
|
workspace_detail: IWorkspaceLite;
|
|
}
|