@toil/gm-types
Version:
All-in-One GM API types (Greasemonkey, Tampermonkey, Violentmonkey and etc)
17 lines (15 loc) • 515 B
text/typescript
import type { AGInfoFields } from "./adguard";
import type { FMInfoFields } from "./firemonkey";
import type { GMInfoFields } from "./greasemonkey";
import type { OMInfoFields } from "./orangemonkey";
import type { TMInfoFields } from "./tampermonkey";
import type { USInfoFields } from "./userscripts";
import type { VMInfoFields } from "./violentmonkey";
export type GMInfo =
| GMInfoFields
| TMInfoFields
| VMInfoFields
| FMInfoFields
| OMInfoFields
| USInfoFields
| AGInfoFields;