@amityco/ts-sdk
Version:
Amity Social Cloud Typescript SDK
19 lines (16 loc) • 400 B
text/typescript
export {};
declare global {
namespace Amity {
type Feed = {
feedId: string;
feedType: 'reviewing' | 'published';
targetType: Extract<Amity.Domain, 'community' | 'user'>;
targetId: string;
postCount: number;
} & Amity.Timestamps;
type QueryGlobalFeed = {
dataType?: 'video' | 'image' | 'file' | 'liveStream';
queryToken?: string;
};
}
}