Rewrite type definitions.

This commit is contained in:
Bauke 2023-04-24 12:02:27 +02:00
parent fbd8de8b03
commit e266e9dd7b
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 3 additions and 31 deletions

34
source/types.d.ts vendored
View File

@ -1,36 +1,8 @@
import type {html} from 'htm/preact';
// Export something so TypeScript doesn't see this file as an ambient module.
export {};
declare global {
// See Vite documentation for `import.meta.env` usage.
// https://vitejs.dev/guide/env-and-mode.html
interface ImportMeta {
readonly env: ImportMetaEnv;
}
interface ImportMetaEnv {
readonly BASE_URL: string;
readonly DEV: boolean;
readonly MODE: string;
readonly PROD: boolean;
readonly VITE_BROWSER: 'chromium' | 'firefox';
}
type HtmComponent = ReturnType<typeof html>;
namespace Queue {
type Item = {
added: Date;
id: number;
sortIndex: number;
text: string;
url: string;
};
type MoveDirection = 'up' | 'down';
}
const $browser: 'chromium' | 'firefox';
const $browser: "chromium" | "firefox";
const $dev: boolean;
const $test: boolean;
}