mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-26 10:11:39 -07:00
* styles prettier fix * Addresses issue #100 from the frontend: * Creates new cejst page and related OL components * temporarily loads census-derived tileserver at higher zoom levels * lays out cejst page : TODO : remove aside * temporarily removing license check - TODO: fix jsonlint * review comments
12 lines
473 B
TypeScript
12 lines
473 B
TypeScript
declare namespace HowYouCanHelpModuleScssNamespace {
|
|
export interface IHowYouCanHelpModuleScss {
|
|
howYouCanHelpContainer: string;
|
|
}
|
|
}
|
|
|
|
declare const HowYouCanHelpModuleScssModule: HowYouCanHelpModuleScssNamespace.IHowYouCanHelpModuleScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: HowYouCanHelpModuleScssNamespace.IHowYouCanHelpModuleScss;
|
|
};
|
|
|
|
export = HowYouCanHelpModuleScssModule;
|