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

13 lines
346 B
TypeScript

/* eslint-disable @typescript-eslint/no-inferrable-types */
import 'reflect-metadata';
import {ServerConfig} from './PrivateConfig';
import {WebConfigClass} from 'typeconfig/web';
import {ConfigState} from 'typeconfig/common';
@WebConfigClass({softReadonly: true})
export class WebConfig extends ServerConfig {
@ConfigState()
State: any;
}