mirror of
https://github.com/iaremarkus/wol-reference-viewer.git
synced 2026-07-22 06:14:20 +00:00
5 lines
174 B
TypeScript
5 lines
174 B
TypeScript
export interface ReferenceData {
|
|
type: 'reference';
|
|
ref: string; // the original query string
|
|
results: string[]; // HTML strings from each result
|
|
}
|