mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-24 01:21:40 -07:00
13 lines
463 B
TypeScript
13 lines
463 B
TypeScript
declare namespace ZoomWarningModuleScssNamespace {
|
|
export interface IZoomWarningModuleScss {
|
|
zoomWarning: string;
|
|
}
|
|
}
|
|
|
|
declare const ZoomWarningModuleScssModule: ZoomWarningModuleScssNamespace.IZoomWarningModuleScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: ZoomWarningModuleScssNamespace.IZoomWarningModuleScss;
|
|
};
|
|
|
|
export = ZoomWarningModuleScssModule;
|
|
|