Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type FetchOptions, fetchState, type FetchState, type StreamOptions, streamState } from '@anchorlib/core';
/** @deprecated Use 'fetchState()' or 'asyncState()' instead.
* Creates a fetch state with GET or DELETE method.
*
* @template R - The type of the initial data
* @param init - The initial data
* @param options - Fetch options with GET or DELETE method
* @returns A fetch state object
*/
export function fetchRef<R>(init: R, options: FetchOptions & { method: 'GET' | 'DELETE' }): FetchState<R>;
/**
* @deprecated Use 'fetchState()' or 'asyncState()' instead.
* Creates a fetch state with POST, PUT or PATCH method.
*
* @template R - The type of the initial data
* @template P - The type of the request body
* @param init - The initial data
* @param options - Fetch options with POST, PUT or PATCH method and body
* @returns A fetch state object
*/
export function fetchRef<R, P>(
init: R,
options: FetchOptions & { method: 'POST' | 'PUT' | 'PATCH'; body: P }
): FetchState<R>;
/**
* @deprecated Use 'fetchState()' or 'asyncState()' instead.
* Creates a fetch state with any HTTP method.
*
* @template R - The type of the initial data
* @param init - The initial data
* @param options - Fetch options with any HTTP method
* @returns A fetch state object
*/
export function fetchRef<R>(
init: R,
options: FetchOptions & { method: 'GET' | 'DELETE' | 'POST' | 'PUT' | 'PATCH' }
): FetchState<R> {
return fetchState(init, options);
}
/**
* @deprecated Use 'streamState()' instead.
* Creates a stream state with GET or DELETE method.
*
* @template R - The type of the initial data
* @param init - The initial data
* @param options - Stream options with GET or DELETE method
* @returns A fetch state object that handles streaming data
*/
export function streamRef<R>(init: R, options: StreamOptions<R> & { method: 'GET' | 'DELETE' }): FetchState<R>;
/**
* @deprecated Use 'streamState()' instead.
* Creates a stream state with POST, PUT or PATCH method.
*
* @template R - The type of the initial data
* @template P - The type of the request body
* @param init - The initial data
* @param options - Stream options with POST, PUT or PATCH method and body
* @returns A fetch state object that handles streaming data
*/
export function streamRef<R, P>(
init: R,
options: StreamOptions<R> & { method: 'POST' | 'PUT' | 'PATCH'; body: P }
): FetchState<R>;
/**
* @deprecated Use 'streamState()' instead.
* Creates a stream state with any HTTP method.
*
* @template R - The type of the initial data
* @param init - The initial data
* @param options - Stream options with any HTTP method
* @returns A fetch state object that handles streaming data
*/
export function streamRef<R>(init: R, options: StreamOptions<R>): FetchState<R> {
return streamState(init, options);
}
|