mirror of
https://github.com/tribufu/tribufu-js
synced 2026-05-06 06:47:27 +00:00
Create profile.ts
This commit is contained in:
parent
7fa3386cba
commit
a83926229a
1 changed files with 16 additions and 0 deletions
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue