index.ts 135 B

1234567
  1. import All from "./all";
  2. import Get from "./get";
  3. const allExtr = new All();
  4. const getExtr = new Get();
  5. export { allExtr, getExtr };