getDetailFile()
Syntax
getDetailFile: (id: string | number)Params
Name
Type
Required
Description
Example
import { getDetailFile } from "@eueno/lib-browser";
const getFile = async (id, token) => {
try {
let id = "244231";
const response = await getDetailFile(id);
console.log(response);
} catch (error) {
console.log(error);
}
};Response
Last updated