Variable locationsKeysConst
locationsKeys: {
all: readonly ["locations"];
lists: () => readonly ["locations", "list"];
list: (
filters: Record<string, any>,
) => readonly ["locations", "list", Record<string, any>];
details: () => readonly ["locations", "detail"];
detail: (id: string) => readonly ["locations", "detail", string];
byWarehouse: (
warehouseId: string,
) => readonly ["locations", "warehouse", string];
} = ...
Type Declaration
all: readonly ["locations"]
lists: () => readonly ["locations", "list"]
list: (
filters: Record<string, any>,
) => readonly ["locations", "list", Record<string, any>]
details: () => readonly ["locations", "detail"]
detail: (id: string) => readonly ["locations", "detail", string]
byWarehouse: (warehouseId: string) => readonly ["locations", "warehouse", string]