7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
export type SceneState = {
|
||
|
scrollX: number;
|
||
|
scrollY: number;
|
||
|
// null indicates transparent bg
|
||
|
viewBackgroundColor: string | null;
|
||
|
};
|