mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-16 02:34:19 +00:00
17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
// 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
|
|
}
|