app.d.ts 285 B

123456789
  1. // D.TS files only contain type definitions, no classes or functions.
  2. // Interfaces with the same name and the same scope or namespace will just add
  3. // to each other, not conflict as long as there are no member with conflicting
  4. // types.
  5. interface Window {
  6. psExpenses: string;
  7. }