• Updates IDE settings for improved file nesting and exclusions • Introduces biome configuration file for consistent project formatting • Implements brightness service and UI component for monitor brightness control • Refactors layout and code formatting for consistency across components
21 lines
338 B
TypeScript
21 lines
338 B
TypeScript
declare const SRC: string
|
|
|
|
declare module 'inline:*' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
declare module '*.scss' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
declare module '*.blp' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const content: string
|
|
export default content
|
|
}
|