mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 18:21:47 +00:00
37 lines
672 B
TypeScript
37 lines
672 B
TypeScript
declare module '*.html' {
|
|
const html: string;
|
|
|
|
export default html;
|
|
}
|
|
declare module '*.svg' {
|
|
const element: SVGAElement;
|
|
|
|
export default element;
|
|
}
|
|
declare module '*.png' {
|
|
const element: HTMLImageElement;
|
|
|
|
export default element;
|
|
}
|
|
declare module '*.jpg' {
|
|
const element: HTMLImageElement;
|
|
|
|
export default element;
|
|
}
|
|
declare module '*.css' {
|
|
const css: string;
|
|
|
|
export default css;
|
|
}
|
|
|
|
declare module 'rollup-plugin-string' {
|
|
import type { Plugin } from 'rollup';
|
|
|
|
interface PluginOptions {
|
|
include?: string[] | string;
|
|
exclude?: string[] | string;
|
|
minifier?: unknown;
|
|
}
|
|
|
|
export function string(options?: PluginOptions): Plugin;
|
|
} |