api-core
Version:
Model-based dynamic multi-level APIs for any provider, plus multiple consumption channels
14 lines (13 loc) • 467 B
TypeScript
import { Model } from "../edges/ModelEdge";
export interface StudentCourseConnectionScheme {
id: string;
courseId: string;
studentId: string;
}
export declare class StudentCourseConnection extends Model implements StudentCourseConnectionScheme {
constructor(obj: StudentCourseConnectionScheme);
static create(id: string, courseId: string, studentId: string): StudentCourseConnection;
id: string;
courseId: string;
studentId: string;
}