11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
interface UseMissionControlResult {
|
|
sessions: [];
|
|
loading: boolean;
|
|
error: null;
|
|
}
|
|
|
|
// Stub — will be wired in P2-002
|
|
export function useMissionControl(): UseMissionControlResult {
|
|
return { sessions: [], loading: false, error: null };
|
|
}
|