31 lines
524 B
TypeScript
31 lines
524 B
TypeScript
import {html} from 'htm/preact';
|
|
import browser from 'webextension-polyfill';
|
|
|
|
declare global {
|
|
interface Window {
|
|
TildesReExtended: {
|
|
debug: boolean;
|
|
};
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly DEV: boolean;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
type TRXComponent = ReturnType<typeof html>;
|
|
|
|
type TRXManifest = browser.Manifest.ManifestBase;
|
|
|
|
type UserLabel = {
|
|
color: string;
|
|
id: number;
|
|
priority: number;
|
|
text: string;
|
|
username: string;
|
|
};
|
|
}
|