10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import apiMediaGET from "./get";
|
|
import apiMediaPOST from "./post";
|
|
import apiMediaDELETE from "./delete";
|
|
declare const media: {
|
|
get: typeof apiMediaGET;
|
|
add: typeof apiMediaPOST;
|
|
delete: typeof apiMediaDELETE;
|
|
};
|
|
export default media;
|