09bdbc5f5f
- ConfirmDialog: modal confirm with Escape/backdrop dismiss, danger styling, i18n labels - EditableSlider: click-to-edit numeric slider with clamping and keyboard support - vite-env.d.ts: type declarations for .txt raw imports - Fixed missing title prop in EditableSlider interface from PR
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// Declare .txt file imports as raw text
|
|
declare module '*.txt' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.txt?raw' {
|
|
const content: string;
|
|
export default content;
|
|
}
|