Skip to content

blockViewFeed

api.blockViewFeed(userId[, isBlockFeed])

Parameters

  • userId string
  • isBlockFeed boolean?
    • mặc định true

Return

Promise<BlockViewFeedResponse>

Types

ts
export type BlockViewFeedResponse = "";

Examples

ts
const userId = "0000000000000000001";
api
    .blockViewFeed(userId)
    .then(console.log).catch(console.error);