mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-16 07:20:16 -07:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
declare module '*.scss' {
|
|
const content: { [className: string]: string };
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const content: { [className: string]: string };
|
|
export default content;
|
|
}
|