5 lines
92 B
TypeScript
5 lines
92 B
TypeScript
// Example entity type
|
|
export interface IEntity {
|
|
id?: number;
|
|
[key: string]: any;
|
|
} |