Stirling-PDF/frontend/src/global.d.ts
James Brunton d2b38ef4b8
Restructure frontend code to allow for extensions (#4721)
# Description of Changes
Move frontend code into `core` folder and add infrastructure for
`proprietary` folder to include premium, non-OSS features
2025-10-28 10:29:36 +00:00

16 lines
301 B
TypeScript

declare module "*.js";
declare module '*.module.css';
// Auto-generated icon set JSON import
declare module 'assets/material-symbols-icons.json' {
const value: {
prefix: string;
icons: Record<string, any>;
width?: number;
height?: number;
};
export default value;
}
export {};