UNPKG

ecoledirecte-api-types

Version:

If you need a EcoleDirecte client for JavaScript, this isn't the right place! This way: [ecoledirecte.js](https://github.com/a2br/ecoledirecte.js).

21 lines 694 B
import { studentAccount } from "./student"; import { familyAccount } from "./family"; import { teacherAccount } from "./teacher"; import { staffAccount } from "./staff"; export * from "./student"; export * from "./family"; export * from "./teacher"; export * from "./staff"; export declare type account = studentAccount | teacherAccount | familyAccount | staffAccount; export declare type role = "E" | "P" | "A" | "1"; export interface accountModule { code: string; enable: boolean; ordre: number; badge: number; params: Record<string, unknown>; } export interface modSitFinanc extends accountModule { code: "SITUATION_FINANCIAIRE"; } //# sourceMappingURL=index.d.ts.map