mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
689 B
41 lines
689 B
declare module '*.css' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*.txt' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*.frag' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*.vert' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*?worker' {
|
|
export const worker: Worker;
|
|
export const workerMsgId: string;
|
|
export const workerName: string;
|
|
export const workerPath: string;
|
|
}
|
|
|
|
declare module '*?format=url' {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module '*?format=text' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|