UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

10 lines 451 B
import type { Feature } from "./classes/private/Feature"; export declare const EXPORTED_METHOD_NAMES_KEY = "__exportedMethodNames"; /** * A decorator function that signifies that the decorated class method should be added to the * `ModUpgraded` object. * * This is only meant to be used internally. */ export declare function Exported<Class extends Feature>(target: Class, propertyKey: keyof Class): void; //# sourceMappingURL=decorators.d.ts.map