line_push/node_modules/@line/liff/dist/lib/api/getFriendship.d.ts
2022-07-17 13:16:16 +08:00

12 lines
452 B
TypeScript

interface Friendship {
friendFlag: boolean;
}
/**
* Gets the friendship status of the LINE Official Account that's linked to the LINE Login channel to which the LIFF app is added.
* Learn more on how to {@link https://developers.line.biz/en/docs/line-login/link-a-bot/|link a LINE Official Account to a LINE Login channel.}
* @export
* @returns {Promise<Friendship>}
*/
export default function getFriendship(): Promise<Friendship>;
export {};