12 lines
452 B
TypeScript
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 {};
|