You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
267 B

  1. import { parseGAT } from "./format/gat";
  2. export { parseGAT } from "./format/gat";
  3. import { renderGAT } from "./render/gat";
  4. export { renderGAT } from "./render/gat";
  5. if (typeof window !== "undefined") {
  6. (window as any).rojs = {
  7. parseGAT,
  8. renderGAT,
  9. };
  10. }