10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
|
import { Displayable } from '../models/base/displayable';
|
||
|
import { Identifiable } from '../models/base/identifiable';
|
||
|
|
||
|
/**
|
||
|
* Base Type for everything that should be displayable
|
||
|
* in Shared Components
|
||
|
*/
|
||
|
|
||
|
export type Selectable = Displayable & Identifiable;
|