-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
45 lines (39 loc) · 750 Bytes
/
Copy pathtypes.ts
File metadata and controls
45 lines (39 loc) · 750 Bytes
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
export interface HashMapNode {
key: string;
value: string;
hash: number;
}
export interface Bucket {
index: number;
nodes: HashMapNode[];
}
export interface LogEntry {
id: string;
message: string;
type: 'info' | 'success' | 'warning' | 'error';
timestamp: number;
}
export enum Tab {
VISUALIZER = 'VISUALIZER',
INTERVIEW = 'INTERVIEW',
ART = 'ART',
}
export enum AspectRatio {
SQUARE = '1:1',
PORTRAIT_3_4 = '3:4',
PORTRAIT_9_16 = '9:16',
LANDSCAPE_4_3 = '4:3',
LANDSCAPE_16_9 = '16:9',
LANDSCAPE_21_9 = '21:9',
STANDARD_2_3 = '2:3',
STANDARD_3_2 = '3:2',
}
export enum ImageSize {
SIZE_1K = '1K',
SIZE_2K = '2K',
SIZE_4K = '4K',
}
export interface SearchResult {
title: string;
uri: string;
}