UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

9 lines (8 loc) 300 B
// SPDX-License-Identifier: Apache-2.0 /** * Use this Decorator to mark a Method that seems unused but is used in the HTML Template. * @constructor */ export function UsedInTemplateOnly(_reason = 'Method is used in HTML Template') { return function (_target, _propertyKey, _descriptor) { }; }