Files
ihrm/node_modules/@stencil/core/internal/stencil-ext-modules.d.ts

42 lines
689 B
TypeScript
Raw Normal View History

2023-05-10 15:06:57 +05:30
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;
}