-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtypes.ts
45 lines (42 loc) · 804 Bytes
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { Language } from 'prism-react-renderer';
export interface PasteType {
id: number;
code: string;
title: string;
description: string;
language: ILanguage;
public: boolean;
private: boolean;
createdAt: string;
userId: string | null;
pasteId: string;
pastePassword: string | null;
hasVanity: boolean;
}
export interface User {
id: string;
object: string;
username: string;
first_name: string;
last_name: string;
gender: string;
birthday: string;
private_metadata: any;
created_at: number;
updated_at: number;
created_at_ms: number;
updated_at_ms: number;
profile_image_url: string;
}
export type ILanguage =
| Language
| 'cobol'
| 'basic'
| 'kotlin'
| 'csharp'
| 'visual-basic'
| 'php'
| 'aspnet'
| 'rust'
| 'java'
| 'none';