cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
20 lines (19 loc) • 672 B
TypeScript
import { MTableQueries } from "../../common-types";
import { ICoreSyctr } from "../../schema";
import { controllerResponse } from "../../utilities";
type ICoreSyctrErrorLogger = {
[key in keyof ICoreSyctr]: string;
};
type ICoreSyctrListErrorLogger = {
[key in keyof MSyctrList]: string;
};
declare class MSyctrList extends MTableQueries {
syctr_id: string;
constructor(init: MSyctrList);
Validate?(): Partial<ICoreSyctrListErrorLogger>;
}
interface countryListControllerResponse extends controllerResponse {
data?: ICoreSyctr[];
}
export { MSyctrList, ICoreSyctrErrorLogger, //interface
ICoreSyctrListErrorLogger, countryListControllerResponse };