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 | 2x | import { Item, Items, Params, Schema } from '@/types/v2';
import type { V2 } from '../';
export type Options<V extends Schema, Ids extends Params.Ids<Item<V>['id']>> = V2.Options<V, true> & {
/**
* The item ids.
*/
ids?: Ids;
};
export type Response<V extends Schema, Ids extends Params.Ids<Item<V>['id']>> = Ids extends undefined
? Items<V>
: Item<V>[];
/**
* Returns a list of items available in the game.
*/
export function list<V extends Schema, O extends Schema = V, Ids extends Params.Ids<Item<O>['id']> = undefined>(
this: V2.API<V>,
options?: Options<O, Ids>
) {
return this.fetch<Response<V, Ids>>('/v2/items', {
params: options,
});
}
|