@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
26 lines (25 loc) • 439 B
TypeScript
/**
* SCAvatarType interface
*/
export interface SCAvatarType {
/**
* Id value identifying this avatar.
*/
id: number;
/**
* Is the primary avatar for the user?
*/
primary: boolean;
/**
* The avatar url.
*/
avatar: string | null;
/**
* Upload datetime.
*/
date_uploaded: Date | string;
/**
* The id of the user for this avatar.
*/
user: number;
}