astro-ghostcms/.pnpm-store/v3/files/04/0a67fe4c41713ad36fd894c3df2...

14 lines
438 B
Plaintext

export declare class ValueMutateTypeMismatchError extends Error {
constructor();
}
export declare class ValueMutateInvalidRootMutationError extends Error {
constructor();
}
export type Mutable = {
[key: string]: unknown;
} | unknown[];
export declare namespace ValueMutate {
/** Performs a deep mutable value assignment while retaining internal references. */
function Mutate(current: Mutable, next: Mutable): void;
}