UNPKG

@tableau/taco-toolkit

Version:
10 lines (9 loc) 270 B
interface CloseConnectionRequest { connectionId: string; reason: string; } interface CloseConnectionResponse { status: 'closed'; } export declare function closeConnection({ connectionId, reason }: CloseConnectionRequest): CloseConnectionResponse; export {};