1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

13 lines
346 B
TypeScript
Raw Normal View History

2022-04-04 19:37:31 +02:00
/* eslint-disable @typescript-eslint/no-inferrable-types */
2020-01-28 18:36:52 +01:00
import 'reflect-metadata';
import {ServerConfig} from './PrivateConfig';
2020-02-04 19:37:47 +01:00
import {WebConfigClass} from 'typeconfig/web';
2022-12-28 19:12:18 +01:00
import {ConfigState} from 'typeconfig/common';
2020-01-28 18:36:52 +01:00
2020-02-06 22:46:45 +01:00
@WebConfigClass({softReadonly: true})
2022-12-28 19:12:18 +01:00
export class WebConfig extends ServerConfig {
2020-02-04 19:37:47 +01:00
@ConfigState()
State: any;
2020-01-28 18:36:52 +01:00
}