mirror of
https://github.com/ae-utbm/sith.git
synced 2026-05-22 08:50:17 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import type { Alpine as AlpineType } from "alpinejs";
|
|
|
|
declare global {
|
|
const Alpine: AlpineType;
|
|
const gettext: (text: string) => string;
|
|
const interpolate: <T>(fmt: string, args: string[] | T, isNamed?: boolean) => string;
|
|
}
|