condividi-link-fediverso-fi.../src/lib/interface.ts

20 lines
283 B
TypeScript

export interface Button {
id?: string;
href?: string;
}
export interface Query {
active?: boolean;
currentWindow?: boolean;
url?: string;
title?: string;
}
export interface Instance {
name: string;
post: string;
icon: string;
host: string;
button?: Button;
}