mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-16 10:44:17 +00:00
Create profile.ts
This commit is contained in:
16
src/models/profile.ts
Normal file
16
src/models/profile.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
// Copyright (c) Tribufu. All Rights Reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
export type ProfileType = "user" | "bot" | "org";
|
||||||
|
|
||||||
|
export type Profile = any;
|
||||||
|
|
||||||
|
export interface MiniProfile {
|
||||||
|
id: string,
|
||||||
|
uuid: string,
|
||||||
|
name: string,
|
||||||
|
displayName: string,
|
||||||
|
type: ProfileType,
|
||||||
|
verified: boolean,
|
||||||
|
photoUrl: string | null
|
||||||
|
}
|
Reference in New Issue
Block a user