uhr/src/bundle.ts

44 lines
1.4 KiB
TypeScript

/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// We just need to reference all required files at least once, so that the tree-shaker won't remove them from
// the bundle.
import * as uhr from './index';
import {LayoutDe} from './layout/layout-de';
import {LayoutDeCh} from './layout/layout-de_ch';
import {LayoutDeChGenau} from './layout/layout-de_ch_genau';
import {LayoutDk} from './layout/layout-dk';
import {LayoutEn} from './layout/layout-en';
import {LayoutEs} from './layout/layout-es';
import {LayoutFr} from './layout/layout-fr';
import {LayoutIt} from './layout/layout-it';
import {LayoutNl} from './layout/layout-nl';
import {LayoutPt} from './layout/layout-pt';
/*eslint @typescript-eslint/no-unused-vars: "warn"*/
let a = uhr;
a = LayoutDeCh;
a = LayoutDeChGenau;
a = LayoutDe;
a = LayoutDk;
a = LayoutEn;
a = LayoutEs;
a = LayoutFr;
a = LayoutIt;
a = LayoutNl;
a = LayoutPt;