/** * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export interface DeleteIt { __deleteIt: true; } /** * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export declare const deleteIt: DeleteIt; export declare function isDeleteIt(x: unknown): x is DeleteIt; /** * Idempotent version (safe to call multiple times) * * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export interface DeleteItIfPresent { __deleteItIfPresent: true; } /** * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export declare const deleteItIfPresent: DeleteItIfPresent; export declare function isDeleteItIfPresent(x: unknown): x is DeleteItIfPresent; //# sourceMappingURL=deleteIt.d.ts.map