mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
16 lines
301 B
TypeScript
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 {};
|