1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Marking the constructor protected

This commit is contained in:
2024-11-30 04:22:59 +04:00
parent 9f61f99548
commit be97ac5640

View File

@@ -11,7 +11,7 @@ export default abstract class StorageEntity<SettingsType extends Object = {}> {
*/
readonly #settings: SettingsType;
constructor(id: string, settings: SettingsType) {
protected constructor(id: string, settings: SettingsType) {
this.#id = id;
this.#settings = settings;
}