/** * Standard response for xblock operations. */ export type XblockResult = { success: boolean; detail: string; xblock_id?: string; extra?: any; };