7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { APIPathsData, APIPathsParams } from "../../types";
|
|
export declare function grabPathData<T extends {
|
|
[k: string]: any;
|
|
} = {
|
|
[k: string]: any;
|
|
}>({ href, basePath }: APIPathsParams<T>): APIPathsData<T>;
|