- Preparing search index...
- The search index is not available
geschichte 
 
Function factoryParameters
 
- factoryParameters<T, N, C>(config, defaultInitialValues?, ns?): { 
 createQueryString: ((values, initialValues?, context?) => string);
 parseQueryString: ((query, initialValues?, context?) => Partial<T>);
 useQuery: (() => {
 context: undefined | C;
 createQuery: ((customValues?) => {});
 createQueryString: ((customValues?) => string);
 initialValues: T;
 pushState: ((state, options?) => Promise<unknown>);
 replaceState: ((state, options?) => Promise<unknown>);
 resetPush: (() => void);
 resetReplace: (() => void);
 values: T;
 });
 }
- 
Type Parameters
- 
T extends Record<string, unknown>
- 
N extends InnerNamespace<T>
- 
 
Parameters
- 
- 
defaultInitialValues: InitialValuesProvider<T> = ...
- 
ns: string = DEFAULT_NAMESPACE
 
 Returns { 
 createQueryString: ((values, initialValues?, context?) => string);
 parseQueryString: ((query, initialValues?, context?) => Partial<T>);
 useQuery: (() => {
 context: undefined | C;
 createQuery: ((customValues?) => {});
 createQueryString: ((customValues?) => string);
 initialValues: T;
 pushState: ((state, options?) => Promise<unknown>);
 replaceState: ((state, options?) => Promise<unknown>);
 resetPush: (() => void);
 resetReplace: (() => void);
 values: T;
 });
 }
- 
createQueryString: ((values, initialValues?, context?) => string)
- 
- (values, initialValues?, context?): string
- 
Parameters
- 
values: PartialDeep<T>
- 
OptionalinitialValues: null | PartialDeep<T>
Optional
- 
Optionalcontext: C
Optional
 
 Returns string
 
 
- 
parseQueryString: ((query, initialValues?, context?) => Partial<T>)
- 
- (query, initialValues?, context?): Partial<T>
- 
Parameters
- 
query: string
- 
OptionalinitialValues: null | PartialDeep<T>
Optional
- 
Optionalcontext: C
Optional
 
 Returns Partial<T>
 
 
- 
useQuery: (() => { 
 context: undefined | C;
 createQuery: ((customValues?) => {});
 createQueryString: ((customValues?) => string);
 initialValues: T;
 pushState: ((state, options?) => Promise<unknown>);
 replaceState: ((state, options?) => Promise<unknown>);
 resetPush: (() => void);
 resetReplace: (() => void);
 values: T;
 })
- 
- (): { 
 context: undefined | C;
 createQuery: ((customValues?) => {});
 createQueryString: ((customValues?) => string);
 initialValues: T;
 pushState: ((state, options?) => Promise<unknown>);
 replaceState: ((state, options?) => Promise<unknown>);
 resetPush: (() => void);
 resetReplace: (() => void);
 values: T;
 }
- 
Returns { 
 context: undefined | C;
 createQuery: ((customValues?) => {});
 createQueryString: ((customValues?) => string);
 initialValues: T;
 pushState: ((state, options?) => Promise<unknown>);
 replaceState: ((state, options?) => Promise<unknown>);
 resetPush: (() => void);
 resetReplace: (() => void);
 values: T;
 }
- 
context: undefined | C
- 
createQuery: ((customValues?) => {})
- 
- (customValues?): {}
- 
Parameters
- 
OptionalcustomValues: PartialDeep<T>
Optional
 
 Returns {}
 
 
- 
createQueryString: ((customValues?) => string)
- 
- (customValues?): string
- 
Parameters
- 
OptionalcustomValues: PartialDeep<T>
Optional
 
 Returns string
 
 
- 
initialValues: T
- 
pushState: ((state, options?) => Promise<unknown>)
- 
- (state, options?): Promise<unknown>
- 
Parameters
- 
state: ((state) => void)
- 
- (state): void
- 
Returns void
 
 
- 
Optionaloptions: Record<string, unknown>
Optional
 
 Returns Promise<unknown>
 
 
- 
replaceState: ((state, options?) => Promise<unknown>)
- 
- (state, options?): Promise<unknown>
- 
Parameters
- 
state: ((state) => void)
- 
- (state): void
- 
Returns void
 
 
- 
Optionaloptions: Record<string, unknown>
Optional
 
 Returns Promise<unknown>
 
 
- 
resetPush: (() => void)
- 
resetReplace: (() => void)
- 
values: T