summary refs log tree commit diff
path: root/src/util/config/types/CdnConfiguration.ts
blob: f58c1c64d0d8cf534bb499dc311ffe22f7f811b4 (plain) (blame)
1
2
3
4
5
6
7
import { EndpointConfiguration } from "./EndpointConfiguration";

export class CdnConfiguration extends EndpointConfiguration {
	resizeHeightMax: number = 1000;
	resizeWidthMax: number = 1000;
	imagorServerUrl: string | null = null;
}