glossarist 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/models/index.d.ts +0 -2
package/package.json
CHANGED
package/src/models/index.d.ts
CHANGED
|
@@ -42,8 +42,6 @@ export class GlossaristModel {
|
|
|
42
42
|
static fromJSON(data: Record<string, unknown>): GlossaristModel;
|
|
43
43
|
equals(other: GlossaristModel): boolean;
|
|
44
44
|
clone(): GlossaristModel;
|
|
45
|
-
protected _lazy<T>(cacheKey: string, rawKey: string, wrapFn: (item: any) => T): T[];
|
|
46
|
-
protected _serialize(obj: Record<string, unknown>, jsonKey: string, cacheKey: string, rawKey: string): void;
|
|
47
45
|
}
|
|
48
46
|
|
|
49
47
|
export class Concept extends GlossaristModel {
|