Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
uibuilder.cmshelp.dk
httpdocs
node_modules
zustand
middleware
File Content:
devtools.d.ts
import type { StateCreator, StoreApi, StoreMutatorIdentifier } from 'zustand/vanilla'; type Config = Parameters<(Window extends { __REDUX_DEVTOOLS_EXTENSION__?: infer T; } ? T : { connect: (param: any) => any; })['connect']>[0]; declare module '../vanilla' { interface StoreMutators<S, A> { 'zustand/devtools': WithDevtools<S>; } } type Cast<T, U> = T extends U ? T : U; type Write<T, U> = Omit<T, keyof U> & U; type TakeTwo<T> = T extends { length: 0; } ? [undefined, undefined] : T extends { length: 1; } ? [...a0: Cast<T, unknown[]>, a1: undefined] : T extends { length: 0 | 1; } ? [...a0: Cast<T, unknown[]>, a1: undefined] : T extends { length: 2; } ? T : T extends { length: 1 | 2; } ? T : T extends { length: 0 | 1 | 2; } ? T : T extends [infer A0, infer A1, ...unknown[]] ? [A0, A1] : T extends [infer A0, (infer A1)?, ...unknown[]] ? [A0, A1?] : T extends [(infer A0)?, (infer A1)?, ...unknown[]] ? [A0?, A1?] : never; type WithDevtools<S> = Write<S, StoreDevtools<S>>; type Action = string | { type: string; [x: string | number | symbol]: unknown; }; type StoreDevtools<S> = S extends { setState: { (...a: infer Sa1): infer Sr1; (...a: infer Sa2): infer Sr2; }; } ? { setState(...a: [...a: TakeTwo<Sa1>, action?: Action]): Sr1; setState(...a: [...a: TakeTwo<Sa2>, action?: Action]): Sr2; } : never; export interface DevtoolsOptions extends Config { name?: string; enabled?: boolean; anonymousActionType?: string; store?: string; } type Devtools = <T, Mps extends [StoreMutatorIdentifier, unknown][] = [], Mcs extends [StoreMutatorIdentifier, unknown][] = [], U = T>(initializer: StateCreator<T, [...Mps, ['zustand/devtools', never]], Mcs, U>, devtoolsOptions?: DevtoolsOptions) => StateCreator<T, Mps, [['zustand/devtools', never], ...Mcs]>; declare module '../vanilla' { interface StoreMutators<S, A> { 'zustand/devtools': WithDevtools<S>; } } export type NamedSet<T> = WithDevtools<StoreApi<T>>['setState']; export declare const devtools: Devtools; export {};
Edit
Download
Unzip
Chmod
Delete