19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import * as plugins from '../plugins.ts';
|
|
import * as data from '../data/index.ts';
|
|
|
|
export interface IReq_GetProjects extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_GetProjects
|
|
> {
|
|
method: 'getProjects';
|
|
request: {
|
|
identity: data.IIdentity;
|
|
connectionId: string;
|
|
search?: string;
|
|
page?: number;
|
|
};
|
|
response: {
|
|
projects: data.IProject[];
|
|
};
|
|
}
|