mirror of
https://github.com/koloml/philomena-tagging-assistant.git
synced 2026-06-24 02:32:21 +00:00
18 lines
379 B
TypeScript
18 lines
379 B
TypeScript
import StorageEntity from "$lib/extension/base/StorageEntity";
|
|
|
|
export interface TestedSettings {
|
|
stringField: string;
|
|
numberField: number;
|
|
nested?: {
|
|
field: boolean;
|
|
};
|
|
}
|
|
|
|
export class TestedEntity extends StorageEntity<TestedSettings> {
|
|
static readonly _entityName = "entity";
|
|
|
|
constructor(id: string, settings: TestedSettings) {
|
|
super(id, settings);
|
|
}
|
|
}
|