Add PDF modal and selectedPost setter

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-14 20:34:26 -05:00
parent 333c31c912
commit 1eb462fc40
2673 changed files with 1107183 additions and 2 deletions

13
node_modules/zustand/ts3.4/middleware/combine.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { StateCreator, StoreMutatorIdentifier } from '../vanilla';
type Write<T, U> = Pick<T, Exclude<keyof T, keyof U>> & U;
type Combine = <T extends object, U extends object, Mps extends [
StoreMutatorIdentifier,
unknown
][] = [
], Mcs extends [
StoreMutatorIdentifier,
unknown
][] = [
]>(initialState: T, additionalStateCreator: StateCreator<T, Mps, Mcs, U>) => StateCreator<Write<T, U>, Mps, Mcs>;
export declare const combine: Combine;
export {};