mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-09 16:45:47 +00:00
24 lines
386 B
TypeScript
24 lines
386 B
TypeScript
import type { SimpleWebpage } from './webpage';
|
|
|
|
export type LikedState = 'baseline' | 'experiment' | 'none';
|
|
|
|
export type Experiment = {
|
|
id: number;
|
|
name: string;
|
|
timestamp: string;
|
|
};
|
|
|
|
export type Query = {
|
|
id: number;
|
|
text: string;
|
|
};
|
|
|
|
export type ExperimentResult = {
|
|
experiment: Experiment;
|
|
serp: SimpleWebpage[];
|
|
};
|
|
|
|
export type Category = {
|
|
id: number;
|
|
name: string;
|
|
};
|