2025-08-22 15:53:52 +03:00
|
|
|
import FNote from "../../entities/fnote";
|
|
|
|
|
|
|
|
|
|
export interface TabContext {
|
|
|
|
|
note: FNote | null | undefined;
|
2025-08-22 16:24:02 +03:00
|
|
|
hidden: boolean;
|
2025-08-22 21:04:04 +03:00
|
|
|
ntxId?: string | null | undefined;
|
2025-08-22 15:53:52 +03:00
|
|
|
}
|