index.d.ts 256 B

123456789101112
  1. /// <reference path="./types/index.d.ts" />
  2. /// <reference path="./app/index.d.ts" />
  3. interface IAppOption {
  4. globalData: {
  5. dictionaries: App.Dictionary[],
  6. patientId?: string;
  7. doctorId?: string;
  8. };
  9. i18n: Record<string, string> | null;
  10. }