17 lines
687 B
TypeScript
17 lines
687 B
TypeScript
import { GrabUserResourceParams } from "../../../../types";
|
|
export default function (params?: GrabUserResourceParams): import("../../../../types").ServerQueryParam<{
|
|
[k: string]: any;
|
|
}, string> & {
|
|
query?: import("../../../../types").ServerQueryQueryObject<{
|
|
[k: string]: any;
|
|
}, string> | undefined;
|
|
} & import("../../../../types").ServerQueryParam<any, string> & {
|
|
query?: import("../../../../types").ServerQueryQueryObject<any, string> | undefined;
|
|
} & import("../../../../types").ServerQueryParam<{
|
|
[k: string]: any;
|
|
}, string> & {
|
|
query?: import("../../../../types").ServerQueryQueryObject<{
|
|
[k: string]: any;
|
|
}, string> | undefined;
|
|
};
|