39 lines
1,001 B
TypeScript
39 lines
1,001 B
TypeScript
/*
|
|
This file is part of »zeitbild«.
|
|
|
|
Copyright 2025 'kcf' <fenris@folksprak.org>
|
|
|
|
»zeitbild« is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
»zeitbild« 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 Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with »zeitbild«. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
namespace _zeitbild
|
|
{
|
|
|
|
/**
|
|
*/
|
|
export var cache_regular : lib_plankton.cache.type_subject<any>;
|
|
|
|
|
|
/**
|
|
*/
|
|
export var cache_external_resources : lib_plankton.cache.type_subject<any>;
|
|
|
|
|
|
/**
|
|
*/
|
|
export var cache_templates : lib_plankton.cache.type_subject<string>;
|
|
|
|
}
|