pangea-server 1.0.9 → 1.0.10
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.
|
@@ -13,8 +13,8 @@ type Relation = {
|
|
|
13
13
|
joinDepth: number;
|
|
14
14
|
};
|
|
15
15
|
type Relations = Record<string, Relation>;
|
|
16
|
-
export declare abstract class BaseModel extends Model {
|
|
17
|
-
protected
|
|
16
|
+
export declare abstract class BaseModel<T extends string = string> extends Model {
|
|
17
|
+
protected readonly __brand: T;
|
|
18
18
|
private static __ExcludedAttributes?;
|
|
19
19
|
private static __Columns?;
|
|
20
20
|
private static __ColumnIndexes?;
|