diff options
author | zeroinformatique | 2021-07-05 20:19:48 +0200 |
---|---|---|
committer | GitHub | 2021-07-05 20:19:48 +0200 |
commit | 89cd6d8aa71870788765db489dd67c4ef237c551 (patch) | |
tree | 7250db7e0bcfbae85d5d1732ce887b624e080654 /viewer/src/@types/splashscreen.d.ts | |
parent | ac160f6879f9a2c74ca77c1c34742d24e69bf570 (diff) | |
parent | c83f44cd69a227f873a026c01653ef434b6ae045 (diff) | |
download | ldgallery-89cd6d8aa71870788765db489dd67c4ef237c551.tar.gz |
Merge pull request #304 from ldgallery/oz-splash-screen
viewer: optional user-defined markdown splash screen
Diffstat (limited to 'viewer/src/@types/splashscreen.d.ts')
-rw-r--r-- | viewer/src/@types/splashscreen.d.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/viewer/src/@types/splashscreen.d.ts b/viewer/src/@types/splashscreen.d.ts new file mode 100644 index 0000000..4e03fa8 --- /dev/null +++ b/viewer/src/@types/splashscreen.d.ts | |||
@@ -0,0 +1,25 @@ | |||
1 | /* ldgallery - A static generator which turns a collection of tagged | ||
2 | -- pictures into a searchable web gallery. | ||
3 | -- | ||
4 | -- Copyright (C) 2019-2021 Guillaume FOUET | ||
5 | -- | ||
6 | -- This program is free software: you can redistribute it and/or modify | ||
7 | -- it under the terms of the GNU Affero General Public License as | ||
8 | -- published by the Free Software Foundation, either version 3 of the | ||
9 | -- License, or (at your option) any later version. | ||
10 | -- | ||
11 | -- This program is distributed in the hope that it will be useful, | ||
12 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | -- GNU Affero General Public License for more details. | ||
15 | -- | ||
16 | -- You should have received a copy of the GNU Affero General Public License | ||
17 | -- along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | export interface SplashScreenConfig { | ||
21 | resource?: string; | ||
22 | acknowledgmentKey?: string; | ||
23 | buttonAcknowledgeLabel?: string; | ||
24 | style?: any; | ||
25 | } | ||