mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
22 lines
347 B
TypeScript
22 lines
347 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;
|
||
|
|
}
|