mirror of
https://github.com/resend/react-email.git
synced 2026-09-14 14:18:02 +08:00
192d82afd8
Co-authored-by: Felipe Freitag <felipe.freitag@resend.com>
12 lines
389 B
TypeScript
12 lines
389 B
TypeScript
// Ambient declaration for the Vite-style ?inline / ?raw CSS import suffix.
|
|
// The inline-css-loader esbuild plugin (see src/utils/esbuild/inline-css-loader.ts)
|
|
// resolves these imports at runtime to the file's raw text.
|
|
declare module '*.css?inline' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module '*.css?raw' {
|
|
const content: string;
|
|
export default content;
|
|
}
|