5 lines
129 B
TypeScript
5 lines
129 B
TypeScript
// Base screen interface for common properties (used internally by builders)
|
|
export interface BaseScreenCommon {
|
|
id: string;
|
|
}
|