6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
import get from "./get";
|
|
declare const schema: {
|
|
get: typeof get;
|
|
};
|
|
export default schema;
|