Skip to content
base-entity.ts 113 B
Newer Older
wangqinghua's avatar
wangqinghua committed
export interface BaseEntity {
    // using type any to avoid methods complaining of invalid type
    id?: any;
}