getShareList()
Syntax
getShareList(id: string | number, token?: string)Parameters
Name
Type
Required
Description
Example
import { getShareList as getShareListLibrary } from "@eueno/lib-browser";
const getListShare = async () => {
try {
const res = await getShareListLibrary(id, token);
if (res?.data?.data) console.log(res?.data?.data);
} catch (error) {
console.log(error);
}
};
Last updated