@amityco/ts-sdk
Version:
Amity Social Cloud Typescript SDK
25 lines • 888 B
TypeScript
export {};
declare global {
namespace Amity {
type QueryBlockedUser = {
token?: Amity.Token;
limit?: Amity.PageLimit['limit'];
};
type BlockedUserPaged = {
paging: Amity.Pagination['paging'] & {
total: number;
};
};
type BlockedUsersLiveCollection = Amity.LiveCollectionParams<QueryBlockedUser>;
type BlockedUserLiveCollectionCache = Amity.LiveCollectionCache<Amity.InternalUser['userId'], {
page: Amity.Page;
total: number;
}>;
type BlockingUsersLiveCollection = Amity.LiveCollectionParams<Record<string, never>>;
type BlockingUserLiveCollectionCache = Amity.LiveCollectionCache<Amity.InternalUser['userId'], {
page: Amity.Page;
total: number;
}>;
}
}
//# sourceMappingURL=block.d.ts.map