drawWrapper.functions.d.ts 314 B

12345678
  1. import type { DrawWrapper } from "./drawWrapper";
  2. import type { Effect } from "./effect";
  3. /**
  4. * Detect if the effect is a DrawWrapper
  5. * @param effect defines the entity to test
  6. * @returns if the entity is a DrawWrapper
  7. */
  8. export declare function IsWrapper(effect: Effect | DrawWrapper): effect is DrawWrapper;