source: frontend/node_modules/immer/dist/utils/env.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 884 bytes
RevLine 
[9af201e]1export declare const hasMap: boolean;
2export declare const hasSet: boolean;
3export declare const hasProxies: boolean;
4/**
5 * The sentinel value returned by producers to replace the draft with undefined.
6 */
7export declare const NOTHING: Nothing;
8/**
9 * To let Immer treat your class instances as plain immutable objects
10 * (albeit with a custom prototype), you must define either an instance property
11 * or a static property on each of your custom classes.
12 *
13 * Otherwise, your class instance will never be drafted, which means it won't be
14 * safe to mutate in a produce callback.
15 */
16export declare const DRAFTABLE: unique symbol;
17export declare const DRAFT_STATE: unique symbol;
18export declare const iteratorSymbol: typeof Symbol.iterator;
19/** Use a class type for `nothing` so its type is unique */
20export declare class Nothing {
21 private _;
22}
23//# sourceMappingURL=env.d.ts.map
Note: See TracBrowser for help on using the repository browser.